git: 9front

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