mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 14:21:10 +02:00
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
This commit is contained in:
parent
c1ff4aa786
commit
a1dcb961a6
1 changed files with 11 additions and 0 deletions
|
@ -1988,6 +1988,17 @@ includes certain digraph compatibility characters, such as @code{U+01F3}
|
||||||
respectively).
|
respectively).
|
||||||
@end deffn
|
@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
|
@node Character Sets
|
||||||
@subsection Character Sets
|
@subsection Character Sets
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue