1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

Add utf8_charcmp in plugin API, fix bug with utf8_charcasecmp

This commit is contained in:
Sebastien Helleu
2009-04-11 23:34:32 +02:00
parent 741ca8fb6a
commit a3841b12e4
4 changed files with 39 additions and 1 deletions
+1
View File
@@ -382,6 +382,7 @@ plugin_load (const char *filename)
new_plugin->utf8_strlen = &utf8_strlen;
new_plugin->utf8_strnlen = &utf8_strnlen;
new_plugin->utf8_strlen_screen = &utf8_strlen_screen;
new_plugin->utf8_charcmp = &utf8_charcmp;
new_plugin->utf8_charcasecmp = &utf8_charcasecmp;
new_plugin->utf8_char_size_screen = &utf8_char_size_screen;
new_plugin->utf8_add_offset = &utf8_add_offset;