shithub: front

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