| 7717 | } |
| 7718 | |
| 7719 | STBIDEF int stbi_is_16_bit_from_file(FILE *f) |
| 7720 | { |
| 7721 | int r; |
| 7722 | stbi__context s; |
| 7723 | long pos = ftell(f); |
| 7724 | stbi__start_file(&s, f); |
| 7725 | r = stbi__is_16_main(&s); |
| 7726 | fseek(f,pos,SEEK_SET); |
| 7727 | return r; |
| 7728 | } |
| 7729 | #endif // !STBI_NO_STDIO |
| 7730 | |
| 7731 | STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp) |
no test coverage detected