Adds a terminating NUL character which does not change the token length.
| 488 | |
| 489 | // Adds a terminating NUL character which does not change the token length. |
| 490 | static void token_buf_close(void) |
| 491 | { |
| 492 | token_buf_room(); |
| 493 | token_buf[token_len] = '\0'; // Note: no advance |
| 494 | } |
| 495 | |
| 496 | // Resets the token buffer cursor. |
| 497 | static void token_buf_reset(void) |
no test coverage detected