ref: 926ab1bda0f3b7781fea7624f514ab93ff490e58 dir: /lib/c/src/tolower.c/
/* See LICENSE file for copyright and license details. */ #define __USE_MACROS #include <ctype.h> #undef tolower int tolower(int c) { return (isupper(c)) ? c | 0x20 : c; }