From a1dcb961a6d819c154cfa5767ce4193f31cf29b3 Mon Sep 17 00:00:00 2001 From: Michael Gran Date: Mon, 28 Dec 2009 15:26:10 -0800 Subject: [PATCH] Add documentation for scm_c_upcase et al * doc/ref/api-data.texi: document scm_c_upcase, scm_c_downcase, scm_c_titlecase, and scm_t_wchar --- doc/ref/api-data.texi | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 61f941aee..e847c9caa 100755 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -1988,6 +1988,17 @@ includes certain digraph compatibility characters, such as @code{U+01F3} respectively). @end deffn +@tindex scm_t_wchar +@deftypefn {C Function} scm_t_wchar scm_c_upcase (scm_t_wchar @var{c}) +@deftypefnx {C Function} scm_t_wchar scm_c_downcase (scm_t_wchar @var{c}) +@deftypefnx {C Function} scm_t_wchar scm_c_titlecase (scm_t_wchar @var{c}) + +These C functions take an integer representation of a Unicode +codepoint and return the codepoint corresponding to its uppercase, +lowercase, and titlecase forms respectively. The type +@code{scm_t_wchar} is a signed, 32-bit integer. +@end deftypefn + @node Character Sets @subsection Character Sets