diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-10-10 19:44:29 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-10-10 19:44:29 +0200 |
commit | b9d6c5c5a04b2fa06306e0b626b2318bcb797d21 (patch) | |
tree | 4bf1e67019b3ff9447a61968b1e1fa38506ec10b /doc/fr | |
parent | cbcc89cb26c2a6e7dc647cbb7cf5c67b7596c981 (diff) | |
download | weechat-b9d6c5c5a04b2fa06306e0b626b2318bcb797d21.zip |
Add property "keys" for hashtable_get_string (return string with list of keys)
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] |