chiark
/
gitweb
/
~ianmdlvl
/
elogind.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[PATCH] klibc: check for gcc4
[elogind.git]
/
klibc
/
klibc
/
strlen.c
1
/*
2
* strlen()
3
*/
4
5
#include <string.h>
6
7
size_t strlen(const char *s)
8
{
9
const char *ss = s;
10
while ( *ss )
11
ss++;
12
return ss-s;
13
}
14