From d693cf4bb90a8e99f1101f325d7e02f269a6a3d9 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 1 Nov 1996 12:33:35 +0000 Subject: [PATCH] lilypond-0.0.9 --- hdr/keyword.hh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hdr/keyword.hh 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; +}; -- 2.39.5