[go: up one dir, main page]

Menu

[r225]: / tags / 0.3.0 / uci.h  Maximize  Restore  History

Download this file

14 lines (10 with data), 241 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#ifndef UCI_H
#define UCI_H
#include <iostream>
#include <sstream>
#include "engine.h"
void uci_loop();
void uci_set_position(istringstream& is);
void uci_set_option(istringstream& is);
void uci_go(istringstream& is);
#endif