X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-test.git;a=blobdiff_plain;f=pctb%2Fcommon.h;h=47f898f06fecd31519d3bc0f717e0e024c1e41cf;hp=8b66cf5e94b416a1a3ce4c1aba9bb1c9cbe135da;hb=4c375a59891a4161e30bd67709a1ad5d1950a850;hpb=da2f43597c757ea14a9226e115e1dbe758321251 diff --git a/pctb/common.h b/pctb/common.h index 8b66cf5..47f898f 100644 --- a/pctb/common.h +++ b/pctb/common.h @@ -31,7 +31,16 @@ #define _GNU_SOURCE #include - +#include +#include +#include +#include +#include +#include +#include +#include + +#include #include typedef struct { @@ -51,12 +60,16 @@ typedef struct { /* both inclusive */ Point br; } Rect; +#define RECT_W(r) ((r).br.x - (r).tl.x + 1) +#define RECT_H(r) ((r).br.y - (r).tl.y + 1) + #define DEBUG_FLAG_LIST \ DF(findypp) \ DF(pages) \ DF(rect) \ + DF(pixmap) \ DF(struct) \ DF(ocr) \ DF(callout) @@ -82,6 +95,7 @@ void debug_flush(void); const char *get_vardir(void); #define FMT(f,a) __attribute__((format(printf,f,a))) +#define SCANFMT(f,a) __attribute__((format(scanf,f,a))) #define NORET __attribute__((noreturn)) #define DEFINE_VWRAPPERF(decls, funcf, otherattribs) \ @@ -118,4 +132,16 @@ void *mmalloc(size_t sz); void *mrealloc(void *p, size_t sz); +#define dbassert(x) ((x) ? (void)0 : dbfile_assertfail(__FILE__,__LINE__,#x)) +void dbfile_assertfail(const char *file, int line, const char *m) NORET; + +FILE *dbfile; +void dbfile_getsline(char *lbuf, size_t lbufsz, const char *file, int line); +int dbfile_open(const char *tpath); /* 0: ENOENT; 1: worked */ +void dbfile_close(void); /* idempotent */ + +int dbfile_scanf(const char *fmt, ...) SCANFMT(1,2); +int dbfile_vscanf(const char *fmt, va_list al) SCANFMT(1,0); + + #endif /*COMMON_H*/