]> git.cameronkatri.com Git - mandoc.git/blob - test-isblank.c
The .AT, .DT, and .UC macros are allowed inside next-line scope
[mandoc.git] / test-isblank.c
1 #include <ctype.h>
2
3 int
4 main(void)
5 {
6 return !isblank(' ') || !isblank('\t') || isblank('_');
7 }