chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[innduct.git] / include / conffile.h
diff --git a/include/conffile.h b/include/conffile.h
deleted file mode 100644 (file)
index 78bc972..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*  $Revision: 5086 $
-**
-**  Data structures, functions and cetera used for config file parsing.
-*/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct {
-    FILE *f;
-    char *buf;
-    unsigned int sbuf;
-    int lineno;
-    int array_len;
-    char **array;
-    char *filename;
-} CONFFILE;
-
-typedef struct {
-    int type;
-#define CONFstring     -1
-    char *name;
-} CONFTOKEN;
-
-extern char CONFerror[];
-
-extern CONFFILE *CONFfopen(char*);
-extern void CONFfclose(CONFFILE*);
-
-extern CONFTOKEN *CONFgettoken(CONFTOKEN*, CONFFILE*);
-
-#ifdef __cplusplus
-}
-#endif