]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.1
authorfred <fred>
Fri, 16 Aug 1996 21:48:54 +0000 (21:48 +0000)
committerfred <fred>
Fri, 16 Aug 1996 21:48:54 +0000 (21:48 +0000)
keyword.hh [new file with mode: 0644]

diff --git a/keyword.hh b/keyword.hh
new file mode 100644 (file)
index 0000000..aa87a8d
--- /dev/null
@@ -0,0 +1,17 @@
+/* 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;
+};
+
+struct Identifier{
+};