]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.9
authorfred <fred>
Fri, 1 Nov 1996 12:33:35 +0000 (12:33 +0000)
committerfred <fred>
Fri, 1 Nov 1996 12:33:35 +0000 (12:33 +0000)
hdr/keyword.hh [new file with mode: 0644]

diff --git a/hdr/keyword.hh b/hdr/keyword.hh
new file mode 100644 (file)
index 0000000..df4547a
--- /dev/null
@@ -0,0 +1,14 @@
+/* for the keyword table */
+struct Keyword_ent
+{
+    const char   *name;
+    int     tokcode;
+};
+
+struct Keyword_table
+{
+    Keyword_ent *table;
+    int     maxkey;
+    Keyword_table(Keyword_ent *);
+    int     lookup(const char *s) const;
+};