git: 9front

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