add strlen function
This commit is contained in:
parent
d0542c1580
commit
58e8632fb0
8
src/kernel/include/string.h
Normal file
8
src/kernel/include/string.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef _CLIPPER_STRING_H_
|
||||
#define _CLIPPER_STRING_H_
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
size_t strlen(const char* str);
|
||||
|
||||
#endif // _CLIPPER_STRING_H_
|
8
src/kernel/lib/string.c
Normal file
8
src/kernel/lib/string.c
Normal file
|
@ -0,0 +1,8 @@
|
|||
#include "string.h"
|
||||
|
||||
size_t strlen(const char* str) {
|
||||
size_t length;
|
||||
for(length = 0; str[length] != '\0'; length++);
|
||||
|
||||
return length;
|
||||
}
|
Loading…
Reference in a new issue