PatchworkOS
Loading...
Searching...
No Matches
strlen.c
Go to the documentation of this file.
1
#include <
string.h
>
2
3
size_t
strlen
(
const
char
* s)
4
{
5
size_t
rc = 0;
6
7
while
(s[rc])
8
{
9
++rc;
10
}
11
12
return
rc;
13
}
string.h
strlen
size_t strlen(const char *s)
Definition
strlen.c:3
src
libstd
functions
string
strlen.c
Generated by
1.9.8