/in/foo.cc: In function 'int CountLower(char*)':
/in/foo.cc:8:23: error: 'strlen' was not declared in this scope
int len = strlen(s);
^
/in/foo.cc: In function 'int CountUpper(char*)':
/in/foo.cc:19:23: error: 'strlen' was not declared in this scope
int len = strlen(s);
^
/in/foo.cc: In function 'void Concat(char*, char*, char*)':
/in/foo.cc:37:25: error: 'strlen' was not declared in this scope
int len1 = strlen(s1);
^
/in/foo.cc:45:22: error: 'strcat' was not declared in this scope
strcat(s3, s2 + 1);
^
/in/foo.cc:38:9: warning: unused variable 'len2' [-Wunused-variable]
int len2 = strlen(s2);
^~~~