Home
last modified time | relevance | path

Searched refs:UC_LT (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/krb5/src/lib/krb5/unicode/ucdata/
H A Ducdata.h71 #define UC_LT 0x00010000 /* Letter, Titlecase */ macro
126 #define ucisalpha(cc) ucisprop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT, 0)
128 #define ucisalnum(cc) ucisprop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT|UC_ND, 0)
134 UC_LU|UC_LL|UC_LT|UC_LM|UC_LO|UC_PC|UC_PD|\
138 UC_LU|UC_LL|UC_LT|UC_LM|UC_LO|UC_PC|UC_PD|\
143 #define ucistitle(cc) ucisprop(cc, UC_LT, 0)
193 #define ucisidentstart(cc) ucisprop(cc, UC_LU|UC_LL|UC_LT|UC_LO|UC_NL, 0)
194 #define ucisidentpart(cc) ucisprop(cc, UC_LU|UC_LL|UC_LT|UC_LO|UC_NL|\
H A DREADME271 2. Added UC_LT to the ucisalpha() macro which I overlooked.