summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/fonts/malayalam/preproc/readfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/fonts/malayalam/preproc/readfile.h')
-rw-r--r--Master/texmf-dist/source/fonts/malayalam/preproc/readfile.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/fonts/malayalam/preproc/readfile.h b/Master/texmf-dist/source/fonts/malayalam/preproc/readfile.h
new file mode 100644
index 00000000000..605d6fa3c9a
--- /dev/null
+++ b/Master/texmf-dist/source/fonts/malayalam/preproc/readfile.h
@@ -0,0 +1,21 @@
+#ifndef READFILE_HEADER_READ
+#define READFILE_HEADER_READ
+
+#define TRUE (1==1)
+#define FALSE (1==0)
+#define BUFSIZE 1024
+#define COMMANDCHAR '@'
+#define COMMENTCHAR '%'
+
+typedef struct string_list
+{ char *s;
+ struct string_list *n;
+} string_list;
+
+/* public operations */
+
+string_list *get_line(FILE *f);
+char *get_command(FILE *f, char *command, string_list **rest);
+
+#endif
+/* eof */