void ucstr2upper( ldap_unicode_t *u, ber_len_t n ) { for(; 0 < n; ++u, --n ) { *u = uctoupper( *u ); } }
void krb5int_ucstr2upper( krb5_unicode * u, size_t n) { for (; 0 < n; ++u, --n) { *u = uctoupper(*u); } }
/* * This routine should return the lower case equivalent for the character or, * if there is no lower case quivalent, the character itself. */ ucs4_t _ure_tolower(ucs4_t c) { return uctoupper(c); }