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