repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
flower-1.0.2
[lilypond.git]
/
keyword.hh
blob
aa87a8dc1af7591d595219c9ed722753142dd3ef
1
/* for the keyword table */
2
struct
Keyword_ent
3
{
4
const char
*
name
;
5
int
tokcode
;
6
};
7
8
struct
Keyword_table
9
{
10
Keyword_ent
*
table
;
11
int
maxkey
;
12
Keyword_table
(
Keyword_ent
*);
13
int
lookup
(
const char
*
s
)
const
;
14
};
15
16
struct
Identifier
{
17
};