9 lines
120 B
C++
9 lines
120 B
C++
#include <stdio.h>
|
|
#include <png.h>
|
|
|
|
int main()
|
|
{
|
|
printf("PNG copyright: %s\n", png_get_copyright(NULL));
|
|
return 0;
|
|
}
|