RatChess/headers/main.h
2025-07-18 14:45:47 -04:00

11 lines
158 B
C

#ifndef MAIN_H
#define MAIN_H
#include "types.h"
int cmain();
game *fenGame(char *str);
game *playMoves(game *g, char *moves);
char* uciGo(game *g);
#endif