diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-15 16:45:17 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-15 16:45:17 +0100 |
commit | 22cb023254090df94e4f6aa30388d49a438c6d40 (patch) | |
tree | 0f7fea12ce05913ad1e79cf544222a475034f83d /doc/fr | |
parent | 4b7e90c679428a418ea8c0656b0fef59e3c2e3a7 (diff) | |
download | weechat-22cb023254090df94e4f6aa30388d49a438c6d40.zip |
doc: fix errors in prototype and example of functions tolower/toupper (plugin API reference)
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index cbed6a89e..8f747e87b 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -503,7 +503,7 @@ Prototype : [source,C] ---- -void weechat_string_tolower (const char *string); +void weechat_string_tolower (char *string); ---- Paramètres : @@ -514,7 +514,7 @@ Exemple en C : [source,C] ---- -char *str = "AbCdé"; +char str[] = "AbCdé"; weechat_string_tolower (str); /* str vaut maintenant : "abcdé" */ ---- @@ -529,7 +529,7 @@ Prototype : [source,C] ---- -void weechat_string_toupper (const char *string); +void weechat_string_toupper (char *string); ---- Paramètres : @@ -540,7 +540,7 @@ Exemple en C : [source,C] ---- -char *str = "AbCdé"; +char str[] = "AbCdé"; weechat_string_toupper (str); /* str vaut maintenant : "ABCDé" */ ---- |