mirror of
https://github.com/cowmonk/cowos.git
synced 2025-10-28 06:53:26 +00:00
11 lines
172 B
C
11 lines
172 B
C
#include <string.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
size_t
|
|
strlen(const char* str)
|
|
{
|
|
size_t len = 0;
|
|
while (str[len]) len++;
|
|
return len;
|
|
}
|