forked from hkc/cc-stuff
1
0
Fork 0
cc-stuff/cpi2png.c

15 lines
239 B
C
Raw Normal View History

// 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;
}