Skip to content

Commit

Permalink
add png test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Jan 14, 2025
1 parent 2213d0b commit 80efc66
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/libpng16.cpp
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 80efc66

Please sign in to comment.