]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/mandoc/test-isblank.c
Merge commit 'ce929fe84f9c453263af379f3b255ff8eca01d48'
[FreeBSD/FreeBSD.git] / contrib / mandoc / test-isblank.c
1 #include <ctype.h>
2
3 int
4 main(void)
5 {
6         return !isblank(' ') || !isblank('\t') || isblank('_');
7 }