| 8432 | #endif // !STBI_NO_STDIO |
| 8433 | |
| 8434 | STBIDEF int stbi_info_from_memory( |
| 8435 | stbi_uc const* buffer, int len, int* x, int* y, int* comp) { |
| 8436 | stbi__context s; |
| 8437 | stbi__start_mem(&s, buffer, len); |
| 8438 | return stbi__info_main(&s, x, y, comp); |
| 8439 | } |
| 8440 | |
| 8441 | STBIDEF int stbi_info_from_callbacks( |
| 8442 | stbi_io_callbacks const* c, void* user, int* x, int* y, int* comp) { |
nothing calls this directly
no test coverage detected