chiark / gitweb /
Much better error handling.
[ypp-sc-tools.db-live.git] / pctb / ocr.h
index a03f1f508dfc5e350f589a9a458c8b138a1783e7..5a08b5051dc0902d325c164e5fbac0d554e877e0 100644 (file)
@@ -1,18 +1,25 @@
+/*
+ * ocr.c forms a mostly-self-contained bit
+ * so we put its declarations in this separate file
+ */
+
 #ifndef OCR_H
 #define OCR_H
 
-#define _GNU_SOURCE
+#include "common.h"
 
-#include <pam.h>
-#include <stdint.h>
-#include <inttypes.h>
-#include <assert.h>
 #include <string.h>
-#include <stdlib.h>
 #include <stdio.h>
-#include <sys/types.h>
+#include <errno.h>
+#include <assert.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <inttypes.h>
+
 #include <sys/wait.h>
 
+
 typedef uint32_t Pixcol;
 #define PSPIXCOL(priscan) priscan##32
 
@@ -22,9 +29,12 @@ typedef struct {
   unsigned ctxmap; /* match context index */
 } OcrResultGlyph;
 
+
 typedef const struct OcrCellTypeInfo *OcrCellType;
 extern const struct OcrCellTypeInfo ocr_celltype_text;
 extern const struct OcrCellTypeInfo ocr_celltype_number;
+const char *ocr_celltype_name(OcrCellType ct);
+
 
 typedef struct OcrReader OcrReader;
 OcrReader *ocr_init(int h);
@@ -34,11 +44,5 @@ OcrResultGlyph *ocr(OcrReader *rd, OcrCellType, int w, Pixcol cols[]);
    * array is valid until next call to ocr()
    */
 
-void debug_flush(void);
-
-#define eassert assert
-#define debug stdout
-
-const char *get_vardir(void);
 
 #endif /*OCR_H*/