From: fred Date: Fri, 16 Aug 1996 21:48:54 +0000 (+0000) Subject: lilypond-0.0.1 X-Git-Tag: release/1.5.59~7212 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7dc6adfeb0e6b908f5f38c61657e69c947380d56;p=lilypond.git lilypond-0.0.1 --- 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{ +};