0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.147.57.239


Current Path : /var/www/html/suk_discontinued/libgd-gd-2.2.3/tests/tiff/
Upload File :
Current File : /var/www/html/suk_discontinued/libgd-gd-2.2.3/tests/tiff/tiff_null.c

#ifdef _WIN32
#include <stdio.h>
int main()
{
	printf("skip");
	return 0;
}
#else
#include "gd.h"

int main()
{
	gdImagePtr im;

	im = gdImageCreateFromTiff(NULL);
	if (im != NULL) {
		gdImageDestroy(im);
		return 1;
	}
	gdImageTiff(im, NULL); /* noop safely */
	return 0;
}
#endif