musl/src/ctype/toupper.c

16 lines
203 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <ctype.h>
#include "libc.h"
2011-02-12 00:22:29 -05:00
int toupper(int c)
{
if (islower(c)) return c & 0x5f;
return c;
}
int __toupper_l(int c, locale_t l)
{
return toupper(c);
}
weak_alias(__toupper_l, toupper_l);