diff options
Diffstat (limited to 'src/locale/toupper_l.c')
-rw-r--r-- | src/locale/toupper_l.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/locale/toupper_l.c b/src/locale/toupper_l.c new file mode 100644 index 00000000..73f2f39b --- /dev/null +++ b/src/locale/toupper_l.c @@ -0,0 +1,6 @@ +#include <ctype.h> + +int toupper_l(int c, locale_t l) +{ + return toupper(c); +} |