summaryrefslogtreecommitdiff
path: root/doc/fr
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2015-07-04 16:23:04 +0200
committerSébastien Helleu <flashcode@flashtux.org>2015-07-04 16:23:04 +0200
commit23fd23fd1a189ad13573bd4277def21ead4b91ed (patch)
tree7b72ba5d41bd40775f315a1dafdb90ec724b6f1e /doc/fr
parente8615c169169e735254d9273f2e4bea31b83e898 (diff)
downloadweechat-23fd23fd1a189ad13573bd4277def21ead4b91ed.zip
api: fix type of value returned by function util_get_time_string
Diffstat (limited to 'doc/fr')
-rw-r--r--doc/fr/weechat_plugin_api.fr.asciidoc11
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]