toupper.c (118B)
1#include <stdint.h> 2 3char toupper(char c) { 4 return ((uint8_t)((uint8_t)c - 'a') < ('z' - 'a' + 1)) ? c - 32u : c; 5}