started on UCI parsing. This is actually kinda effing hard.

This commit is contained in:
laura 2025-12-23 02:51:08 +01:00
commit 6542190be7
5 changed files with 766 additions and 0 deletions

13
main.c Normal file
View file

@ -0,0 +1,13 @@
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <time.h>
#include <error.h>
int main(int argc, char *argv[]){
return 1;
}