2026-02-19 18:54:48 +00:00
|
|
|
#include <kernel/libc/string.h>
|
2022-12-21 08:29:33 +00:00
|
|
|
|
2026-02-19 18:54:48 +00:00
|
|
|
size_t strlen(const char *str)
|
|
|
|
|
{
|
2023-02-26 10:05:39 +00:00
|
|
|
size_t res = 0;
|
|
|
|
|
while (str[res]) {
|
|
|
|
|
res++;
|
|
|
|
|
}
|
2026-02-19 18:54:48 +00:00
|
|
|
|
2023-02-26 10:05:39 +00:00
|
|
|
return res;
|
2022-12-21 08:29:33 +00:00
|
|
|
}
|