| 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) |
| 7732 | { |
| 7733 | stbi__context s; |
| 7734 | stbi__start_mem(&s,buffer,len); |
| 7735 | return stbi__info_main(&s,x,y,comp); |
| 7736 | } |
| 7737 | |
| 7738 | STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int *x, int *y, int *comp) |
| 7739 | { |
nothing calls this directly
no test coverage detected