1 /* src/server/god_commands.h
3 * God commands and their interpretation by the server.
11 #include <stdint.h> /* uint8_t */
14 /* Parse/apply god command "tok0" with argument "tok1", "tok2" etc. . */
15 extern uint8_t parse_god_command_1arg(char * tok0, char * tok1);
16 extern uint8_t parse_god_command_2arg(char * tok0, char * tok1, char * tok2);
17 extern uint8_t parse_god_command_3arg(char * tok0, char * tok1, char * tok2,