Blame | Last modification | View Log | RSS feed
#include <u.h>
#include <libc.h>
long
strlen(char *s)
{
return strchr(s, 0) - s;
}