PatchworkOS
Loading...
Searching...
No Matches
strlen.c
Go to the documentation of this file.
1#include <string.h>
2
3size_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}
size_t strlen(const char *s)
Definition strlen.c:3