lang-bootstrap/05/musl-0.6.0/src/locale/toupper_l.c

7 lines
77 B
C
Raw Normal View History

2022-02-20 13:18:21 -08:00
#include <ctype.h>
int toupper_l(int c, locale_t l)
{
return toupper(c);
}