10 lines
228 B
C
10 lines
228 B
C
/*
|
|
* JPEG Decoder Implementation
|
|
*
|
|
* Compile this file alongside your project, or use jpeg.h as a header-only library
|
|
* by defining JPEG_IMPLEMENTATION before including it.
|
|
*/
|
|
|
|
#define JPEG_IMPLEMENTATION
|
|
#include "jpeg.h"
|