diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/command.h b/src/command.h index 1d5b9500a..568f05098 100644 --- a/src/command.h +++ b/src/command.h @@ -71,13 +71,12 @@ typedef enum #define KEYDEF_WRITE_ALL 0x02 #define KEYDEF_COMMENT_ALL 0x04 -typedef struct -{ - int keys[MAX_COMMAND_KEYS]; - char flags; - command_t command; - char *name; - char *description; +typedef struct { + int keys[MAX_COMMAND_KEYS]; + char flags; + command_t command; + char *name; + char *description; } command_definition_t; command_definition_t *get_command_definitions(void); |