]> git.cameronkatri.com Git - mandoc.git/blob - test-isblank.c
Do not mistreat empty arguments to font alternating macros
[mandoc.git] / test-isblank.c
1 #include <ctype.h>
2
3 int
4 main(void)
5 {
6 return(!isblank(' ') || !isblank('\t') || isblank('_'));
7 }