diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-12-03 18:03:10 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-12-03 18:03:10 +0100 |
commit | 2888d41425afc7e38238533a95930cf0f46cc10c (patch) | |
tree | 8364be89c534411d08ecb9f291f1d4d64d28e6f4 /src/core/wee-string.h | |
parent | e0826e1ce7bcff9c0404da0f2fac05b7224aad2c (diff) | |
download | weechat-2888d41425afc7e38238533a95930cf0f46cc10c.zip |
Added alias plugin, added missing config file functions in plugins API
Diffstat (limited to 'src/core/wee-string.h')
-rw-r--r-- | src/core/wee-string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-string.h b/src/core/wee-string.h index d308d2e5a..67922b5d0 100644 --- a/src/core/wee-string.h +++ b/src/core/wee-string.h @@ -33,8 +33,8 @@ extern char *string_remove_quotes (char *, char *); extern char *string_convert_hex_chars (char *); extern char **string_explode (char *, char *, int, int, int *); extern void string_free_exploded (char **); -extern char **string_split_multi_command (char *, char); -extern void string_free_multi_command (char **); +extern char **string_split_command (char *, char); +extern void string_free_splitted_command (char **); extern char *string_iconv (int, char *, char *, char *); extern char *string_iconv_to_internal (char *, char *); extern char *string_iconv_from_internal (char *, char *); |