7 lines
77 B
C
7 lines
77 B
C
|
#include <ctype.h>
|
||
|
|
||
|
int toupper_l(int c, locale_t l)
|
||
|
{
|
||
|
return toupper(c);
|
||
|
}
|