summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/strlen.c
blob: 9a3c372a5ee30cbc0ee56f6c6bdd7fb5e58f858c (plain)
1
2
3
4
5
6
7
8
9
#include <u.h>
#include <libc.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}