Use stdbool.h

This commit is contained in:
Max Brunsfeld 2014-10-03 16:06:08 -07:00
parent 808b003f1a
commit e5ea4efb0b
7 changed files with 25 additions and 22 deletions

View file

@ -6,13 +6,13 @@
static const char *empty_chunk = "";
static int advance(TSLexer *lexer) {
static bool advance(TSLexer *lexer) {
/*
* Return false if the Lexer has already reached the end of the input.
*/
if (lexer->chunk == empty_chunk)
return 0;
return false;
/*
* Increment the Lexer's position.
@ -41,7 +41,7 @@ static int advance(TSLexer *lexer) {
(const uint8_t *)lexer->chunk + position_in_chunk,
lexer->chunk_size - position_in_chunk + 1, &lexer->lookahead);
return 1;
return true;
}
static TSTree *accept(TSLexer *lexer, TSSymbol symbol, int is_hidden) {