1 #include <ctype.h> 2 toupper_l(int c,locale_t l)3 int toupper_l(int c, locale_t l) 4 { 5 return toupper(c); 6 } 7