14 lines
154 B
C
14 lines
154 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
|
#include "stb_image.h"
|
|
|
|
int main(void) {
|
|
|
|
|
|
|
|
return 0;
|
|
}
|