| 4796 | } |
| 4797 | |
| 4798 | unsigned lodepng_decode32_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4799 | { |
| 4800 | return lodepng_decode_file(out, w, h, filename, LCT_RGBA, 8); |
| 4801 | } |
| 4802 | |
| 4803 | unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4804 | { |
nothing calls this directly
no test coverage detected