| 4665 | } |
| 4666 | |
| 4667 | unsigned lodepng_decode32_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4668 | { |
| 4669 | return lodepng_decode_file(out, w, h, filename, LCT_RGBA, 8); |
| 4670 | } |
| 4671 | |
| 4672 | unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4673 | { |
nothing calls this directly
no test coverage detected