git: 9front

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