diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-08-18 07:36:48 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-08-18 07:36:48 +0200 |
commit | 46a9d17ac331b1df9fbd33a7c23f87fd58246a2e (patch) | |
tree | 1a4bd97bade2b4977683fa2c07f639ace3f5e5c0 /doc/fr | |
parent | fd1886e883968dbf372157644ce5664e75a6ff4b (diff) | |
download | weechat-46a9d17ac331b1df9fbd33a7c23f87fd58246a2e.zip |
api: add argument "length" in function utf8_is_valid()
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index 56adc832a..a5895d68a 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -2193,18 +2193,22 @@ Cette fonction n'est pas disponible dans l'API script. ==== utf8_is_valid +_Mis à jour dans la 1.4._ + Vérifier si une chaîne est valide UTF-8. Prototype : [source,C] ---- -int weechat_utf8_is_valid (const char *string, char **error); +int weechat_utf8_is_valid (const char *string, int length, char **error); ---- Paramètres : * 'string' : chaîne +* 'length' : nombre maximum de caractères UTF-8 à vérifier ; si ≤ 0, la chaîne + complète est vérifiée _(WeeChat ≥ 1.4)_ * 'error' : si non NULL, '*error' est alimenté avec le pointeur vers le premier caractère non valide dans la chaîne, s'il y en a @@ -2217,7 +2221,7 @@ Exemple en C : [source,C] ---- char *error; -if (weechat_utf8_is_valid (string, &error)) +if (weechat_utf8_is_valid (string, -1, &error)) { /* ... */ } |