add png test

This commit is contained in:
alexey.lysiuk 2025-01-14 13:32:56 +02:00
parent 2213d0bb44
commit 80efc66a5c

10
test/libpng16.cpp Normal file
View file

@ -0,0 +1,10 @@
#include <png.h>
int main()
{
png_structp png = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
AEDI_EXPECT(png != nullptr);
png_destroy_write_struct(&png, nullptr);
return 0;
}