diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-04-01 12:04:28 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-04-01 12:04:28 +0200 |
commit | af138840b3484e106d247c4a6a18a28e8225f5bb (patch) | |
tree | 602c259d4bbe4ea5f2d86f903afd60d4ac9caefc /doc/fr | |
parent | f855b6b0f39755c094e5703c990ab4660099ad4d (diff) | |
download | weechat-af138840b3484e106d247c4a6a18a28e8225f5bb.zip |
api: return pointer to string in function string_dyn_free() if argument "free_string" is 0
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index e8c80bac6..34e239659 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -2378,7 +2378,7 @@ Prototype : [source,C] ---- -void weechat_dyn_free (char **string, int free_string); +char *weechat_dyn_free (char **string, int free_string); ---- Paramètres : @@ -2387,6 +2387,10 @@ Paramètres : * _free_string_ : libérer la chaîne elle-même ; si 0, le contenu de _*string_ reste valide après l'appel à cette fonction +Valeur de retour : + +* pointeur vers la chaîne si _free_string_ vaut 0, sinon NULL + Exemple en C : [source,C] |