| 8263 | } |
| 8264 | |
| 8265 | static int stbi__pnm_getinteger(stbi__context* s, char* c) { |
| 8266 | int value = 0; |
| 8267 | |
| 8268 | while (!stbi__at_eof(s) && stbi__pnm_isdigit(*c)) { |
| 8269 | value = value * 10 + (*c - '0'); |
| 8270 | *c = (char)stbi__get8(s); |
| 8271 | } |
| 8272 | |
| 8273 | return value; |
| 8274 | } |
| 8275 | |
| 8276 | static int stbi__pnm_info(stbi__context* s, int* x, int* y, int* comp) { |
| 8277 | int maxv, dummy; |
no test coverage detected