I really don't know what I changed

This commit is contained in:
Out Of Ideas 2024-05-08 20:27:24 -05:00
parent 6d42c22e63
commit 7357d9eacd

13
main.c Normal file
View file

@ -0,0 +1,13 @@
/* Required to read config file */
#define INI_IMPLEMENTATION
#include "libs/ini.h"
/* Required for input handling and screen painting */
#include <curses.h>
#include <stdio.h>
#include <stdlib.h>
int main() {
return 0;
}