From a394ed5d6fcb54970d5453de02ce228c35ddd9bb Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Wed, 18 Mar 2009 18:02:48 +0100 Subject: Add "replacement" argument for string_remove_color in plugin API --- doc/en/dev/plugin_c_api.en.xml | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) (limited to 'doc') diff --git a/doc/en/dev/plugin_c_api.en.xml b/doc/en/dev/plugin_c_api.en.xml index f707a2bcf..8f2530720 100644 --- a/doc/en/dev/plugin_c_api.en.xml +++ b/doc/en/dev/plugin_c_api.en.xml @@ -1099,6 +1099,53 @@ if (str) +
+ weechat_string_remove_color + + + Prototype: + +char *weechat_string_remove_color (const char *string, const char *replacement); + + + + Remove WeeChat colors from a string. + + + Arguments: + + + + : string + + + + + : if not NULL and not empty, WeeChat + color codes are replaced by first char of this string, otherwise + WeeChat color codes and following chars (if related to color) are + removed from string + + + + + + Return value: string without color. + + + + Result has to be free by a call to "free" after use. + + + + Example: + +char *str1 = weechat_string_remove_color (my_string1, NULL); /* remove colors and related chars */ +char *str2 = weechat_string_remove_color (my_string2, "?"); /* replace color codes by "?" */ + + +
+ -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0