forked from hkc/cc-stuff
15 lines
239 B
C
15 lines
239 B
C
|
// x-run: make cpi2png
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#define STB_IMAGE_IMPLEMENTATION
|
||
|
#include <stb/stb_image.h>
|
||
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
||
|
#include <stb/stb_image_write.h>
|
||
|
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|