diff options
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index d857d2747..79b5e7e64 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -3015,21 +3015,26 @@ Cette fonction n'est pas disponible dans l'API script. ==== util_get_time_string -_WeeChat ≥ 0.3.2._ +_WeeChat ≥ 0.3.2, mise à jour dans la 1.3._ -Retourner la date/heure sous forme de chaîne construite avec "strftime". +Retourner la date/heure sous forme de chaîne construite avec "strftime" et le +format défini dans l'option 'weechat.look.time_format'. Prototype : [source,C] ---- -char *weechat_util_get_time_string (const time_t *date); +const char *weechat_util_get_time_string (const time_t *date); ---- Paramètres : * 'date' : pointeur vers la date +Valeur de retour : + +* pointeur vers une chaîne contenant la date/heure + Exemple en C : [source,C] |