shithub: plan9front

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