git: 9front

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