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