1 #include <string.h> 2 3 int main(void)4 main(void) 5 { 6 const char s[1] = { 'a' }; 7 return(1 != strnlen(s, 1)); 8 } 9