shithub: front

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