| 4670 | } |
| 4671 | |
| 4672 | unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigned* h, const char* filename) |
| 4673 | { |
| 4674 | return lodepng_decode_file(out, w, h, filename, LCT_RGB, 8); |
| 4675 | } |
| 4676 | #endif /*LODEPNG_COMPILE_DISK*/ |
| 4677 | |
| 4678 | void lodepng_decoder_settings_init(LodePNGDecoderSettings* settings) |
nothing calls this directly
no test coverage detected