diff options
Diffstat (limited to 'doc/ref/api-i18n.texi')
-rw-r--r-- | doc/ref/api-i18n.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/ref/api-i18n.texi b/doc/ref/api-i18n.texi index ee76544eb..b82a3a276 100644 --- a/doc/ref/api-i18n.texi +++ b/doc/ref/api-i18n.texi @@ -197,6 +197,12 @@ Return the uppercase character that corresponds to @var{chr} according to either @var{locale} or the current locale. @end deffn +@deffn {Scheme Procedure} char-locale-titlecase chr [locale] +@deffnx {C Function} scm_char_locale_titlecase (chr, locale) +Return the titlecase character that corresponds to @var{chr} according +to either @var{locale} or the current locale. +@end deffn + @deffn {Scheme Procedure} string-locale-upcase str [locale] @deffnx {C Function} scm_string_locale_upcase (str, locale) Return a new string that is the uppercase version of @var{str} @@ -209,6 +215,12 @@ Return a new string that is the down-case version of @var{str} according to either @var{locale} or the current locale. @end deffn +@deffn {Scheme Procedure} string-locale-titlecase str [locale] +@deffnx {C Function} scm_string_locale_titlecase (str, locale) +Return a new string that is the titlecase version of @var{str} +according to either @var{locale} or the current locale. +@end deffn + Note that in the current implementation Guile has no notion of multibyte characters and in a multibyte locale characters may not be converted correctly. |