1
0
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:
Sebastien Helleu
2005-10-23 11:33:39 +00:00
parent cde66456fb
commit f7872a9dd8
10 changed files with 1054 additions and 720 deletions
+15
View File
@@ -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
*/