git: 9front

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