Merge commit 'origin/stable'
[pspp-builds.git] / src / language / lexer / lexer.h
index ada09ade9a89f1eb0d4f682a0d70c94cef9be04d..9e5d09aec03f8dee7f96dcd73e7067f650ca9a22 100644 (file)
@@ -53,7 +53,10 @@ bool lex_is_string (struct lexer *);
 /* Token matching functions. */
 bool lex_match (struct lexer *, int);
 bool lex_match_id (struct lexer *, const char *);
+bool lex_match_id_n (struct lexer *, const char *, size_t n);
 bool lex_match_int (struct lexer *, int);
+bool lex_match_hyphenated_word (struct lexer *lexer, const char *s);
+
 
 /* Forcible matching functions. */
 bool lex_force_match (struct lexer *, int);