shithub: scc

ref: 45110f5f227f83965b9a008e52096b45e4b72d12
dir: /tests/0025-string.c/

View raw version

int strlen(char *);

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