git: 9front

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