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

api: add function string_concat (issue #2005)

This commit is contained in:
Sébastien Helleu
2023-09-02 11:53:56 +02:00
parent 9bc9df47d7
commit e34071131e
12 changed files with 334 additions and 2 deletions
+1
View File
@@ -658,6 +658,7 @@ plugin_load (const char *filename, int init_plugin, int argc, char **argv)
new_plugin->string_dyn_copy = &string_dyn_copy;
new_plugin->string_dyn_concat = &string_dyn_concat;
new_plugin->string_dyn_free = &string_dyn_free;
new_plugin->string_concat = &string_concat;
new_plugin->utf8_has_8bits = &utf8_has_8bits;
new_plugin->utf8_is_valid = &utf8_is_valid;