Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/modules/klibc/strlen.c

Source at commit 1308 created 12 years 8 months ago.
By meklort, Add a few placeholders for file io
1/*
2 * strlen()
3 */
4
5#include <string.h>
6
7size_t strlen(const char *s)
8{
9const char *ss = s;
10while (*ss)
11ss++;
12return ss - s;
13}
14

Archive Download this file

Revision: 1308