mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
9 lines
123 B
C
9 lines
123 B
C
#include <string.h>
|
|
|
|
size_t strlen(const char * s) {
|
|
const char * str = s;
|
|
while (*str)
|
|
str++;
|
|
return str - s;
|
|
}
|