| 7746 | } |
| 7747 | |
| 7748 | STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len) |
| 7749 | { |
| 7750 | stbi__context s; |
| 7751 | stbi__start_mem(&s,buffer,len); |
| 7752 | return stbi__is_16_main(&s); |
| 7753 | } |
| 7754 | |
| 7755 | STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user) |
| 7756 | { |
nothing calls this directly
no test coverage detected