RatChess/headers/main.h
2025-07-01 15:59:39 -04:00

11 lines
156 B
C

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