shithub: plan9front

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