1 /* src/client/control.h
3 * Routines for handling control input from the keyboard.
9 #include <stdint.h> /* uint8_t, uint16_t */
13 /* Try to match "key" to the Command DB and execute appropriate actions if
14 * successful. Return 0 on failure, 2 for calling a "quit" comand (to be
15 * handled externally) and 1 for calling any other command.
17 extern uint8_t try_key(uint16_t key);