Introduce pet-projects dir
[lcapit-junk-code.git] / pet-projects / games / ttt3p / computer.h
blob4e9de1cc3f358fc828e04ce076d34fe6b9a10807
1 /*
2 * This file is licensed under the GPLv2 license
3 *
4 * Luiz Fernando N. Capitulino
5 * <lcapitulino@gmail.com>
6 */
7 #ifndef COMPUTER_H
8 #define COMPUTER_H
10 int is_computer_turn(void);
11 void computer_move(int *row, int *col);
12 void computer_init(void);
13 void computer_wait(void);
15 extern int computer_players;
16 extern int computer_watch;
18 #endif /* COMPUTER_H */