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