shithub: front

ref: b0a059537147237e868b4a8f07922ae8a349e55c
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;
}