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

Fixed bug in string_explode function, new function string_strip

This commit is contained in:
Sebastien Helleu
2008-03-15 09:47:27 +01:00
parent 9f840e514e
commit 68b586c229
4 changed files with 73 additions and 16 deletions
+2
View File
@@ -243,6 +243,8 @@ plugin_load (char *filename)
new_plugin->strcmp_ignore_chars = &string_strcmp_ignore_chars;
new_plugin->strcasestr = &string_strcasestr;
new_plugin->string_replace = &string_replace;
new_plugin->string_remove_quotes = &string_remove_quotes;
new_plugin->string_strip = &string_strip;
new_plugin->string_explode = &string_explode;
new_plugin->string_free_exploded = &string_free_exploded;
new_plugin->string_split_command = &string_split_command;