mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
9 lines
201 B
C
9 lines
201 B
C
#include <png.h>
|
|
int main()
|
|
{
|
|
png_structp png_ptr;
|
|
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
|
|
png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
|
|
return 0;
|
|
}
|