| 1181 | } |
| 1182 | |
| 1183 | unsigned C_tokenize(const char **token, const char **type, |
| 1184 | unsigned *line, unsigned *col, unsigned *pos) |
| 1185 | { |
| 1186 | enum TokenClass typeid; |
| 1187 | unsigned result = C_tokenize_int(token, &typeid, line, col, pos); |
| 1188 | *type = token_class[typeid]; |
| 1189 | return result; |
| 1190 | } |
| 1191 | |
| 1192 | // Escape hard newlines in a string. |
| 1193 | void RAW_escape(FILE *out, const char *token) |
nothing calls this directly
no test coverage detected