X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-live.git;a=blobdiff_plain;f=pctb%2Focr.h;fp=pctb%2Focr.h;h=5b5f697dbd88603a37dd8f518f91308c39192dfb;hp=e8b5b1a1207dc3f5ebae2060718d7c0a96cba5b3;hb=451e1b1ed16a7a53395c030598a83031e266f973;hpb=24391f052b3c6f01f987b3cd08dbcc7a876afe06 diff --git a/pctb/ocr.h b/pctb/ocr.h index e8b5b1a..5b5f697 100644 --- a/pctb/ocr.h +++ b/pctb/ocr.h @@ -55,10 +55,11 @@ OcrResultGlyph *ocr(OcrReader *rd, OcrCellType, int w, Pixcol cols[]); /*----- debugging arrangements, rather contingent -----*/ #define DEBUG_FLAG_LIST \ - DF(ocr) \ + DF(findypp) \ + DF(pages) \ DF(rect) \ - DF(callout) \ - DF(pages) + DF(ocr) \ + DF(callout) enum { #define DF(f) dbg__shift_##f, @@ -82,13 +83,15 @@ void debug_flush(void); const char *get_vardir(void); -#define DEBUG_DEFINE_DEBUGF(f) \ - static void vdebugf(const char *fmt, va_list al) { \ - if (DEBUGP(f)) \ +#define DEBUG_DEFINE_SOME_DEBUGF(fl,funcf) \ + static void v##funcf(const char *fmt, va_list al) { \ + if (DEBUGP(fl)) \ vfprintf(debug,fmt,al); \ } \ - static void debugf(const char *fmt, ...) { \ - va_list al; va_start(al,fmt); vdebugf(fmt,al); va_end(al); \ + static void funcf(const char *fmt, ...) { \ + va_list al; va_start(al,fmt); v##funcf(fmt,al); va_end(al); \ } +#define DEBUG_DEFINE_DEBUGF(fl) DEBUG_DEFINE_SOME_DEBUGF(fl,debugf) + #endif /*OCR_H*/