]> git.cameronkatri.com Git - mandoc.git/blob - test-isblank.c
No need to hardcode /usr/bin/ as the path to more(1); helps portability.
[mandoc.git] / test-isblank.c
1 #include <ctype.h>
2
3 int
4 main(void)
5 {
6 return(!isblank(' ') || !isblank('\t') || isblank('_'));
7 }