diff options
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 66c40db5e..3adad9aa9 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -3123,16 +3123,20 @@ Arguments: *** 'pointer' : pointeur *** 'buffer' : buffer *** 'time' : heure +** 'keys': chaîne avec la liste des clés (format: "clé1,clé2,clé3") Valeur en retour : * valeur de la propriété sous forme de chaîne -Exemple en C : +Exemples en C : [source,C] ---------------------------------------- -const char *type_keys = weechat_hashtable_get_string (hashtable, "type_keys"); +weechat_printf (NULL, "les clés sont de type: %s", + weechat_hashtable_get_string (hashtable, "type_keys")); +weechat_printf (NULL, "liste des clés: %s", + weechat_hashtable_get_string (hashtable, "keys")); ---------------------------------------- [NOTE] |