From 7dc6adfeb0e6b908f5f38c61657e69c947380d56 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 16 Aug 1996 21:48:54 +0000 Subject: [PATCH] lilypond-0.0.1 --- keyword.hh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 keyword.hh diff --git a/keyword.hh b/keyword.hh new file mode 100644 index 0000000000..aa87a8dc1a --- /dev/null +++ b/keyword.hh @@ -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{ +}; -- 2.39.5