shithub: scc

ref: 3c737d518c2ca2f85ded09025cae9a900902288f
dir: /tests/0025-string.c/

View raw version

int strlen(char *);

int
main()
{
	char *p;
	
	p = "hello";
	return strlen(p) - 5;
}