mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
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
This commit is contained in:
parent
820c9d3d82
commit
f4897860b5
35 changed files with 112 additions and 95 deletions
|
|
@ -152,19 +152,19 @@ static char *split_nicks(const char *cmd, char **pre, char **nicks, char **post,
|
|||
*pre = g_strdup(cmd);
|
||||
*post = *nicks = NULL;
|
||||
for (p = *pre; *p != '\0'; p++) {
|
||||
if (!isspace(*p))
|
||||
if (!i_isspace(*p))
|
||||
continue;
|
||||
|
||||
if (arg == 1) {
|
||||
/* text after nicks */
|
||||
*p++ = '\0';
|
||||
while (isspace(*p)) p++;
|
||||
while (i_isspace(*p)) p++;
|
||||
*post = p;
|
||||
break;
|
||||
}
|
||||
|
||||
/* find nicks */
|
||||
while (isspace(p[1])) p++;
|
||||
while (i_isspace(p[1])) p++;
|
||||
if (--arg == 1) {
|
||||
*p = '\0';
|
||||
*nicks = p+1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue