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

Annotation of /trunk/plibc/lib/string.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (hide annotations)
Thu Aug 15 18:10:51 2024 UTC (7 months, 2 weeks ago) by rakinar2
File MIME type: text/x-c
File size: 206 byte(s)
feat: add plibc to the project
1 rakinar2 47 #ifndef PLIBC_STRING_H
2     #define PLIBC_STRING_H
3    
4     #include <stddef.h>
5    
6     size_t
7     strlen (const char *str)
8     {
9     size_t len = 0;
10    
11     while (str[len])
12     len++;
13    
14     return len;
15     }
16    
17     #endif /* PLIBC_STRING_H */

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26