git: 9front

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