Undoes the push action but only if there is some content.
| 482 | |
| 483 | // Undoes the push action but only if there is some content. |
| 484 | static int token_buf_pop(void) |
| 485 | { |
| 486 | return token_len ? token_buf[--token_len] : 0; |
| 487 | } |
| 488 | |
| 489 | // Adds a terminating NUL character which does not change the token length. |
| 490 | static void token_buf_close(void) |