git: 9front

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