/* * ctype_toupper.c */ #include "lub/ctype.h" #include /*--------------------------------------------------------- */ char lub_ctype_toupper(char c) { unsigned char tmp = (unsigned char)c; return toupper(tmp); } /*--------------------------------------------------------- */