X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=token.c;h=fd589e9dc345552b5cb3f91b3d3e606db53d5bc4;hb=9a95f6acbc7b51421bf407966c15b3de82abe9af;hp=3289c387b1b00afba94ba82fab82a5c581b72fba;hpb=fbfa4789da3ccbc2d7ecca67035f33956c0a9443;p=cparser diff --git a/token.c b/token.c index 3289c38..fd589e9 100644 --- a/token.c +++ b/token.c @@ -140,25 +140,25 @@ void print_token(FILE *f, const token_t *token) } } -void print_pp_token_type(FILE *f, preprocessor_token_type_t token_type) +void print_pp_token_type(FILE *f, int token_type) { - if(token_type == TP_EOF) { + if (token_type == TP_EOF) { fputs("end of file", f); return; } - if(token_type == TP_ERROR) { + if (token_type == TP_ERROR) { fputs("error", f); return; } int token_symbols_len = TP_LAST_TOKEN; - if(token_type < 0 || token_type >= token_symbols_len) { + if (token_type < 0 || token_type >= token_symbols_len) { fputs("invalid token", f); return; } const symbol_t *symbol = pp_token_symbols[token_type]; - if(symbol != NULL) { + if (symbol != NULL) { fprintf(f, "%s", symbol->string); } else { if(token_type >= 0 && token_type < 256) {