mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 23:52:22 +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
|
|
@ -153,7 +153,7 @@ int config_get_bool(CONFIG_REC *rec, const char *section, const char *key, int d
|
|||
str = config_get_str(rec, section, key, NULL);
|
||||
if (str == NULL) return def;
|
||||
|
||||
return toupper(*str) == 'T' || toupper(*str) == 'Y';
|
||||
return i_toupper(*str) == 'T' || i_toupper(*str) == 'Y';
|
||||
}
|
||||
|
||||
/* Return value of key `value_key' from list item where `key' is `value' */
|
||||
|
|
@ -224,8 +224,8 @@ int config_node_get_bool(CONFIG_NODE *parent, const char *key, int def)
|
|||
str = config_node_get_str(parent, key, NULL);
|
||||
if (str == NULL) return def;
|
||||
|
||||
return toupper(*str) == 'T' || toupper(*str) == 'Y' ||
|
||||
(toupper(*str) == 'O' && toupper(str[1]) == 'N');
|
||||
return i_toupper(*str) == 'T' || i_toupper(*str) == 'Y' ||
|
||||
(i_toupper(*str) == 'O' && i_toupper(str[1]) == 'N');
|
||||
}
|
||||
|
||||
/* Get the value of keys `key' and `key_value' and put them to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue