6 lines
77 B
C
6 lines
77 B
C
#include <ctype.h>
|
|
|
|
int isupper_l(int c, locale_t l)
|
|
{
|
|
return isupper(c);
|
|
}
|