mirror of
https://github.com/weechat/weechat.git
synced 2026-06-26 12:56:37 +02:00
Converted old Ruby interface to new plugin system (Ruby plugin still NOT ok!)
This commit is contained in:
@@ -933,6 +933,21 @@ weechat_ascii_strcasecmp (t_weechat_plugin *plugin,
|
||||
return ascii_strcasecmp (string1, string2);
|
||||
}
|
||||
|
||||
/*
|
||||
* weechat_ascii_strncasecmp: locale and case independent string comparison
|
||||
* with max length
|
||||
*/
|
||||
|
||||
int
|
||||
weechat_ascii_strncasecmp (t_weechat_plugin *plugin,
|
||||
char *string1, char *string2, int max)
|
||||
{
|
||||
/* make gcc happy */
|
||||
(void) plugin;
|
||||
|
||||
return ascii_strncasecmp (string1, string2, max);
|
||||
}
|
||||
|
||||
/*
|
||||
* weechat_explode_string: explode a string
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user