/[osn-commons]/trunk/plibc/lib/string.c
ViewVC logotype

Contents of /trunk/plibc/lib/string.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (show annotations)
Thu Aug 15 18:10:51 2024 UTC (7 months, 2 weeks ago) by rakinar2
File MIME type: text/x-c
File size: 130 byte(s)
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