RatChess/headers/main.h
k da8eb581e3
All checks were successful
Verify build / verify_build (push) Successful in 1m3s
C go added and uci ret type
2025-07-12 15:08:12 -04:00

11 lines
157 B
C

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