tolower.c (119B)
1#include <stdint.h> 2 3char tolower (char c) { 4 return ((uint8_t)((uint8_t)c - 'A') < ('Z' - 'A' + 1)) ? c + 32u : c; 5}