10 lines
231 B
C
10 lines
231 B
C
|
|
/*
|
||
|
|
* PNG Decoder/Encoder Implementation
|
||
|
|
*
|
||
|
|
* Compile this file alongside your project, or use png.h as a header-only library
|
||
|
|
* by defining PNG_IMPLEMENTATION before including it.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#define PNG_IMPLEMENTATION
|
||
|
|
#include "png.h"
|