clarified extraneous files

This commit is contained in:
Brett Weiland 2023-01-22 18:35:33 -06:00
parent f556c24a13
commit 17f12b3d14
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include "libpng_wrapper.hpp"
using namespace std;
//I was required to write a test function as part of the project; here I test libpng.
void test_png() {
png test_image("test_png.png", 500, 500);
uint32_t w = test_image.width();

View File

@ -1,6 +1,7 @@
#ifndef TEST_H
#define TEST_H
//I was required to write a test function as part of the project; here I test libpng.
void test_png();
#endif