add strlen function

This commit is contained in:
Robert 2023-09-06 00:15:18 +02:00
parent d0542c1580
commit 58e8632fb0
2 changed files with 16 additions and 0 deletions

View 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
View 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;
}