| 4869 | } |
| 4870 | |
| 4871 | unsigned lodepng_decode32_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4872 | { |
| 4873 | return lodepng_decode_file(out, w, h, filename, LCT_RGBA, 8); |
| 4874 | } |
| 4875 | |
| 4876 | unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4877 | { |
nothing calls this directly
no test coverage detected