Chameleon

Chameleon Svn Source Tree

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

Source at commit 1362 created 12 years 10 months ago.
By ifabio, Add EnableC2/3/4 State and Npci=0x2000 options for the pkg, also edit Localizable file for English and Italian
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: 1362