Skip to content

Commit

Permalink
add towlower in wchar32
Browse files Browse the repository at this point in the history
  • Loading branch information
xianjimli committed Dec 19, 2024
1 parent 274272f commit b662e23
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/tkc/wchar32.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,5 +500,9 @@ wchar_t* wmemset(wchar_t* s, wchar_t c, size_t n) {
int iswspace(wint_t ch) {
return ch == ' ';
}

int towlower(wint_t ch) {
return tolower(ch);
}
#endif/*WITH_WCSXXX*/

0 comments on commit b662e23

Please sign in to comment.