]> git.cameronkatri.com Git - mandoc.git/blob - test-strnlen.c
At the end of mansearch(), fchdir() back to where we started from;
[mandoc.git] / test-strnlen.c
1 #include <string.h>
2
3 int
4 main(void)
5 {
6 const char s[1] = { 'a' };
7 return(1 != strnlen(s, 1));
8 }