| 10 | namespace msdfgen { |
| 11 | |
| 12 | int readCharF(FILE *input) { |
| 13 | int c = '\0'; |
| 14 | do { |
| 15 | c = fgetc(input); |
| 16 | } while (c == ' ' || c == '\t' || c == '\r' || c == '\n'); |
| 17 | return c; |
| 18 | } |
| 19 | |
| 20 | int readCharS(const char **input) { |
| 21 | int c = '\0'; |
no outgoing calls
no test coverage detected