#include #include #include #include int main(int argc, char **argv) { if (argc != 2) { LOG0("Usage: lisiblepng "); return 1; } const char *png_filepath = argv[1]; FILE *png_file = fopen(png_filepath, "r"); if (!png_file) { const char *error_message = strerror(errno); LOGN("Couldn't open PNG file: %s", error_message); goto err; } Png *png = lis_Png_parse(png_file); lis_Png_dump_ppm(png); lis_Png_destroy(png); if (fclose(png_file) != 0) { const char *error_message = strerror(errno); LOGN("Couldn't close PNG file: %s", error_message); goto err; } return 0; err: return 1; }