]> git.cameronkatri.com Git - mandoc.git/blob - test-isblank.c
On a new RS nesting level, the saved width starts from the default
[mandoc.git] / test-isblank.c
1 #include <ctype.h>
2
3 int
4 main(void)
5 {
6 return(!isblank(' ') || !isblank('\t') || isblank('_'));
7 }