| 28 | void write_ui64(string_buffer& buf, uint64_t v); |
| 29 | |
| 30 | inline bool |
| 31 | is_null_expression(const char *start, const char *finish) |
| 32 | { |
| 33 | return (finish == start + 1 && start[0] == 0); |
| 34 | } |
| 35 | |
| 36 | inline void |
| 37 | read_token(char *& start, char *finish) |
no outgoing calls
no test coverage detected