Skip to content
Snippets Groups Projects
Commit c59af52e authored by Damien George's avatar Damien George
Browse files

py: Rename some unichar functions for consistency.

parent 89755ae6
No related branches found
No related tags found
No related merge requests found
......@@ -94,28 +94,28 @@ bool unichar_isxdigit(unichar c) {
}
/*
bool char_is_alpha_or_digit(unichar c) {
bool unichar_is_alpha_or_digit(unichar c) {
return c < 128 && (attr[c] & (FL_ALPHA | FL_DIGIT)) != 0;
}
*/
bool char_is_upper(unichar c) {
bool unichar_isupper(unichar c) {
return c < 128 && (attr[c] & FL_UPPER) != 0;
}
bool char_is_lower(unichar c) {
bool unichar_islower(unichar c) {
return c < 128 && (attr[c] & FL_LOWER) != 0;
}
unichar unichar_tolower(unichar c) {
if (char_is_upper(c)) {
if (unichar_isupper(c)) {
return c + 0x20;
}
return c;
}
unichar unichar_toupper(unichar c) {
if (char_is_lower(c)) {
if (unichar_islower(c)) {
return c - 0x20;
}
return c;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment