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