| 6107 | } |
| 6108 | |
| 6109 | unsigned lodepng_encode32_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) { |
| 6110 | return lodepng_encode_file(filename, image, w, h, LCT_RGBA, 8); |
| 6111 | } |
| 6112 | |
| 6113 | unsigned lodepng_encode24_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) { |
| 6114 | return lodepng_encode_file(filename, image, w, h, LCT_RGB, 8); |
nothing calls this directly
no test coverage detected