|
static const u8 png_header[8] = { 0x89, 'P', 'N', 'G', 13, 10, 26, 10 };
|
|
static const u8 png_header[8] = { 0x89, 'P', 'N', 'G', 13, 10, 26, 10 };
|
|
if (memcmp(context.data, png_header, sizeof(png_header)) != 0) {
|
|
if (memcmp(context.data, png_header, sizeof(png_header)) != 0) {
|