mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
14 lines
132 B
C
Executable File
14 lines
132 B
C
Executable File
/*
|
|
* strlen()
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
size_t strlen(const char *s)
|
|
{
|
|
const char *ss = s;
|
|
while (*ss)
|
|
ss++;
|
|
return ss - s;
|
|
}
|