| 8421 | } |
| 8422 | |
| 8423 | STBIDEF int stbi_is_16_bit_from_file(FILE* f) { |
| 8424 | int r; |
| 8425 | stbi__context s; |
| 8426 | long pos = ftell(f); |
| 8427 | stbi__start_file(&s, f); |
| 8428 | r = stbi__is_16_main(&s); |
| 8429 | fseek(f, pos, SEEK_SET); |
| 8430 | return r; |
| 8431 | } |
| 8432 | #endif // !STBI_NO_STDIO |
| 8433 | |
| 8434 | STBIDEF int stbi_info_from_memory( |
no test coverage detected