shithub: p9-stm32-example-bare

ref: 385ecf9c11ba7114801e877090951e1785698051
dir: /libkern/strlen.c/

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

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}