| 5026 | } |
| 5027 | |
| 5028 | unsigned lodepng_decode32_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) { |
| 5029 | return lodepng_decode_file(out, w, h, filename, LCT_RGBA, 8); |
| 5030 | } |
| 5031 | |
| 5032 | unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) { |
| 5033 | return lodepng_decode_file(out, w, h, filename, LCT_RGB, 8); |
nothing calls this directly
no test coverage detected