blob: 17204f5605ce715863f9f4b0c95507cfa7f0a592 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "command.h"
#include "state.h"
void handle_uci(uci_state *state, ucicmd cmd);
void handle_initial(uci_state *state, ucicmd cmd);
void handle_idle(uci_state *state, ucicmd cmd);
void handle_sync(uci_state *state, ucicmd cmd);
void handle_ping(uci_state *state, ucicmd cmd);
void handle_active(uci_state *state, ucicmd cmd);
void handle_halt(uci_state *state, ucicmd cmd);
|