Download this file
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