| 4797 | } |
| 4798 | |
| 4799 | unsigned lodepng_decode24(unsigned char** out, unsigned* w, unsigned* h, const unsigned char* in, size_t insize) |
| 4800 | { |
| 4801 | return lodepng_decode_memory(out, w, h, in, insize, LCT_RGB, 8); |
| 4802 | } |
| 4803 | |
| 4804 | #ifdef LODEPNG_COMPILE_DISK |
| 4805 | unsigned lodepng_decode_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename, |
nothing calls this directly
no test coverage detected