shithub: p9-stm32-example-os

ref: f801657f77f3923ec2388c25bdcb036c8019ba89
dir: /libkern/strlen.c/

View raw version
#include	<u.h>
#include	"kern.h"

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}