11 lines
157 B
C
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
|