![]() |
![]()
| ![]() |
![]()
NAMEisalpharune, islowerrune, isspacerune, istitlerune, isupperrune, tolowerrune, totitlerune, toupperrune - Unicode character classes and cases SYNOPSIS#include <utf.h> int isalpharune(Rune c) int islowerrune(Rune c) int isspacerune(Rune c) int istitlerune(Rune c) int isupperrune(Rune c) Rune tolowerrune(Rune c) Rune totitlerune(Rune c) Rune toupperrune(Rune c) DESCRIPTIONThese routines examine and operate on Unicode characters, in particular a subset of their properties as defined in the Unicode standard. Unicode defines some characters as alphabetic and specifies three cases: upper, lower, and title. Analogously to isalpha(3) for ASCII, these routines test types and modify cases for Unicode characters. The names are self-explanatory. The case-conversion routines return the character unchanged if it has no case. SOURCEhttps://9fans.github.io/plan9port/unix SEE ALSOisalpha(3), The Unicode Standard.
|