diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-07-06 19:04:01 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-07-06 19:04:01 +0200 |
commit | 0e3529e3b5c6c2383226f271e51ab50d990b0a1b (patch) | |
tree | 2373d90c5fe8a62f003d773f11cdcc391623349f /FICS/command.h | |
parent | f5aad8fe893db67bdbd641d001d8e5d4792f693b (diff) |
Added a new type and replaced sprintf() calls with msnprintf()
Diffstat (limited to 'FICS/command.h')
-rw-r--r-- | FICS/command.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FICS/command.h b/FICS/command.h index 1f2eeef..f7ca75f 100644 --- a/FICS/command.h +++ b/FICS/command.h @@ -95,6 +95,10 @@ typedef struct s_alias_type { char *alias; } alias_type; +typedef struct { + char com[MAX_STRING_LENGTH]; +} comstr_t; + extern char *adhelp_dir; extern char *adj_dir; extern char *board_dir; |