mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 16:11:40 +00:00
8 lines
88 B
C
8 lines
88 B
C
|
#include <ctype.h>
|
||
|
|
||
|
int toupper(int c)
|
||
|
{
|
||
|
if (islower(c)) return c & 0x5f;
|
||
|
return c;
|
||
|
}
|