Parent Directory
|
Revision Log
feat: add plibc to the project
1 | #include "string.h" |
2 | |
3 | size_t |
4 | strlen (const char *str) |
5 | { |
6 | size_t len = 0; |
7 | |
8 | while (str[len]) |
9 | len++; |
10 | |
11 | return len; |
12 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |