diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-08-22 09:30:08 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-08-22 09:30:08 +0200 |
commit | 951d1f91a4595500d50af52245eb0dbeff829aca (patch) | |
tree | 1bafff9fc29544d5045b8fca90aee6836c8c416d /doc/fr/weechat_plugin_api.fr.asciidoc | |
parent | 8b47243516dab4462eb57fca2e3ce79b34b5c146 (diff) | |
download | weechat-951d1f91a4595500d50af52245eb0dbeff829aca.zip |
api: add function string_hex_dump()
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.asciidoc')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index a5895d68a..c769281e6 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -1851,6 +1851,48 @@ length = weechat_string_decode_base64 (string, result); [NOTE] Cette fonction n'est pas disponible dans l'API script. +==== string_hex_dump + +_WeeChat ≥ 1.4._ + +Afficher les données sous forme d'octets en hexadécimal et ascii. + +Prototype : + +[source,C] +---- +char *string_hex_dump (const char *data, int data_size, int bytes_per_line, + const char *prefix, const char *suffix); +---- + +Paramètres : + +* 'data' : les données à afficher +* 'data_size' : nombre d'octets à afficher dans 'data' +* 'bytes_per_line' : nombre d'octets à afficher sur chaque ligne +* 'prefix' : le préfixe à afficher au début de chaque ligne + (optionnel, peut être NULL) +* 'suffix' : le suffixe à afficher à la fin de chaque ligne + (optionnel, peut être NULL) + +Valeur de retour : + +* chaîne avec les données (doit être supprimée par un appel à "free" après + utilisation) + +Exemple en C : + +[source,C] +---- +char *string = "abc def-ghi"; +char *dump = weechat_string_hex_dump (string, strlen (string), 8, " >> ", NULL); +/* dump == " >> 61 62 63 20 64 65 66 2D a b c d e f - \n" + " >> 67 68 69 g h i " */ +---- + +[NOTE] +Cette fonction n'est pas disponible dans l'API script. + ==== string_is_command_char _WeeChat ≥ 0.3.2._ |