1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-22 15:47:37 +00:00
freebsd/contrib/mdocml/test-isblank.c
2016-01-15 23:28:12 +00:00

8 lines
96 B
C

#include <ctype.h>
int
main(void)
{
return !isblank(' ') || !isblank('\t') || isblank('_');
}