| 4815 | } |
| 4816 | |
| 4817 | unsigned lodepng_decode32_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4818 | { |
| 4819 | return lodepng_decode_file(out, w, h, filename, LCT_RGBA, 8); |
| 4820 | } |
| 4821 | |
| 4822 | unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4823 | { |
nothing calls this directly
no test coverage detected