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
lilypond-0.0.5
[lilypond.git]
/
lexer.hh
blob
28753603ef35731e43b15d0ee39568dda2e1cb3e
1
#ifndef LEXER_HH
2
#define LEXER_HH
3
4
#include
"proto.hh"
5
6
void
new_input
(
String s
);
7
bool
close_input
();
8
int
yylex
();
9
void
yyerror
(
char
*
s
);
10
11
int
lookup_keyword
(
String s
);
12
Identifier
*
lookup_identifier
(
String s
);
13
14
#endif