diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-09-02 11:53:56 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-10-17 18:14:53 +0200 |
commit | e34071131ec31b53c9dc4491f9eb2aa546a23ac7 (patch) | |
tree | 5d67e684f5d419026eb2c9b9697c1a706f45f893 /doc/fr/weechat_plugin_api.fr.adoc | |
parent | 9bc9df47d72af83313483c7324d3dcae9157f939 (diff) | |
download | weechat-e34071131ec31b53c9dc4491f9eb2aa546a23ac7.zip |
api: add function string_concat (issue #2005)
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.adoc')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index 42b1ff747..c9432f18a 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -3533,6 +3533,46 @@ weechat_string_dyn_free (string, 1); [NOTE] Cette fonction n'est pas disponible dans l'API script. +==== string_concat + +_WeeChat ≥ 4.2.0._ + +Concaténer plusieurs chaînes de caractères en utilisant un séparateur. + +Prototype : + +[source,c] +---- +const char *weechat_string_concat (const char *separator, ...); +---- + +Paramètres : + +* _separator_ : la chaîne de séparation qui est insérée entre les chaînes + concaténées (peut être NULL ou une chaîne vide) + +[NOTE] +Le dernier paramètre *DOIT* toujours être NULL. + +Une macro nommée `WEECHAT_STR_CONCAT` peut être utilisée, où la valeur finale +NULL n'est pas nécessaire (l'utilisation de cette macro est recommandée). + +Valeur de retour : + +* chaîne concaténée + +Exemple en C : + +[source,c] +---- +const char *result = weechat_string_concat (" / ", "abc", "def", "ghi", NULL); /* result == "abc / def / ghi" */ + +/* with macro */ +const char *result = WEECHAT_STR_CONCAT(" / ", "abc", "def", "ghi"); /* result == "abc / def / ghi" */ +---- + +[NOTE] +Cette fonction n'est pas disponible dans l'API script. + [[utf-8]] === UTF-8 |