From: fred Date: Fri, 1 Nov 1996 12:33:35 +0000 (+0000) Subject: lilypond-0.0.9 X-Git-Tag: release/1.5.59~6985 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d693cf4bb90a8e99f1101f325d7e02f269a6a3d9;p=lilypond.git lilypond-0.0.9 --- diff --git a/hdr/keyword.hh b/hdr/keyword.hh new file mode 100644 index 0000000000..df4547ad76 --- /dev/null +++ b/hdr/keyword.hh @@ -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; +};