isprint_l.c 77 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6
#include <ctype.h>

int isprint_l(int c, locale_t l)
{
	return isprint(c);
}