comparison src/lex.h @ 4867:c7f9ea142fda

[project @ 2004-04-20 19:41:11 by jwe]
author jwe
date Tue, 20 Apr 2004 19:41:11 +0000
parents 9f0ce1536368
children bdb307dc8613
comparison
equal deleted inserted replaced
4866:3cb99ace0edb 4867:c7f9ea142fda
43 // Restore a buffer (for unwind-prot). 43 // Restore a buffer (for unwind-prot).
44 extern void restore_input_buffer (void *buf); 44 extern void restore_input_buffer (void *buf);
45 45
46 // Delete a buffer (for unwind-prot). 46 // Delete a buffer (for unwind-prot).
47 extern void delete_input_buffer (void *buf); 47 extern void delete_input_buffer (void *buf);
48
49 // Is the given string a keyword?
50 extern bool is_keyword (const std::string& s);
48 51
49 // For communication between the lexer and parser. 52 // For communication between the lexer and parser.
50 53
51 class 54 class
52 lexical_feedback 55 lexical_feedback