diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-05-11 07:41:44 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-05-11 07:41:44 +0200 |
commit | e94e4a92f4a6867915a4c423881bd379f0c1191e (patch) | |
tree | 2b49746e4c13b72344f2ac4b7c6fc6d9379cfee5 /doc/fr | |
parent | 951d1410d9ca7298f84d668e8b334e982f59a101 (diff) | |
download | weechat-e94e4a92f4a6867915a4c423881bd379f0c1191e.zip |
doc: add arvg[2] in example of function string_split_command (plugin API reference)
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index 4f7cd595d..24ed710af 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -1658,6 +1658,7 @@ Exemple en C : char **argv = weechat_string_split_command ("/commande1 arg;/commande2", ';'); /* résultat : argv[0] == "/commande1 arg" argv[1] == "/commande2" + argv[2] == NULL */ weechat_free_split_command (argv); ---- |