shithub: front

ref: 7eddb7fa7b965aeae238115e87d94db686d13614
dir: /sys/src/libc/port/strlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}