Files
2023-03-24 08:51:35 -07:00

7 lines
100 B
C++

unsigned long strlen(const char *);
void func(const char *s) {
strlen("literal");
strlen(s);
}