summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/OR_PRACTICAL_C/macro.h
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/CONTRIB/OR_PRACTICAL_C/macro.h')
-rw-r--r--reference/C/CONTRIB/OR_PRACTICAL_C/macro.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/reference/C/CONTRIB/OR_PRACTICAL_C/macro.h b/reference/C/CONTRIB/OR_PRACTICAL_C/macro.h
new file mode 100644
index 0000000..791eedd
--- /dev/null
+++ b/reference/C/CONTRIB/OR_PRACTICAL_C/macro.h
@@ -0,0 +1,26 @@
+/********************************************************
+ * macros.h -- Definitions for the macro lookup *
+ * package. *
+ * *
+ * Procedures *
+ * load_macros -- load a macro onto the symbol tbl *
+ * *
+ * macro_check -- check a macro line for *
+ * correctness *
+ ********************************************************/
+
+/********************************************************
+ * load_macros -- load macros into symbol table *
+ * *
+ * Parameters *
+ * name -- filename of file to load *
+ ********************************************************/
+void load_macros(char *name);
+
+/********************************************************
+ * macro_check -- check a macro line for correctness *
+ * *
+ * Parameters *
+ * line -- line to check *
+ ********************************************************/
+void macro_check(char *name);