diff options
author | Timo Sirainen <cras@irssi.org> | 2002-01-27 20:45:59 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-01-27 20:45:59 +0000 |
commit | f4897860b50e2d1cc3b97a00d1f5a2e9e9c04faa (patch) | |
tree | a9d1400865e53ac8e5b68ca37b1cb9d081bd8467 /src/core/commands.c | |
parent | 820c9d3d8288c8d6dfb3172750bc26adea76f66c (diff) | |
download | irssi-f4897860b50e2d1cc3b97a00d1f5a2e9e9c04faa.zip |
toupper(), tolower(), isspace(), is..etc..() aren't safe with chars in some
systems, use our own is_...() functions now instead.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2348 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/commands.c')
-rw-r--r-- | src/core/commands.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/commands.c b/src/core/commands.c index f1119069..f066d674 100644 --- a/src/core/commands.c +++ b/src/core/commands.c @@ -557,15 +557,15 @@ static int get_cmd_options(char **data, int ignore_unknown, } (*data)++; - if (**data == '-' && isspace((*data)[1])) { + if (**data == '-' && i_isspace((*data)[1])) { /* -- option means end of options even if next word starts with - */ (*data)++; - while (isspace(**data)) (*data)++; + while (i_isspace(**data)) (*data)++; break; } - if (!isspace(**data)) { + if (!i_isspace(**data)) { option = cmd_get_param(data); } else { option = "-"; @@ -610,14 +610,14 @@ static int get_cmd_options(char **data, int ignore_unknown, *optlist[pos] == '!') option = NULL; - while (isspace(**data)) (*data)++; + while (i_isspace(**data)) (*data)++; continue; } if (option == NULL) break; - if (*optlist[pos] == '@' && !isdigit(**data)) + if (*optlist[pos] == '@' && !i_isdigit(**data)) break; /* expected a numeric argument */ /* save the argument */ @@ -628,7 +628,7 @@ static int get_cmd_options(char **data, int ignore_unknown, } option = NULL; - while (isspace(**data)) (*data)++; + while (i_isspace(**data)) (*data)++; } return 0; |