lilypond-0.1.33
[lilypond.git] / src / lexerinit.cc
blob2eb9ed4e50d64620c0e846d17f4b57d6de9ad5ba
1 /*
2 lexerinit.cc -- implement some stuff
4 source file of the LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
9 #include <iostream.h>
10 #include <strstream.h>
11 #include "proto.hh"
12 #include "plist.hh"
13 #include "lexer.hh"
14 #include "debug.hh"
15 #include "main.hh"
16 #include "source-file.hh"
17 #include "source.hh"
19 My_flex_lexer *lexer=0;
21 int
22 yylex() {
23 return lexer->yylex();
26 bool
27 busy_parsing()
29 return lexer;