36cb297b57
This reverts commit 56f77cf071
.
oops
9 lines
132 B
C
Executable file
9 lines
132 B
C
Executable file
#include <string.h>
|
|
|
|
size_t strlen(const char * str) {
|
|
size_t len = 0;
|
|
while(str[len] != '\0') {
|
|
len++;
|
|
}
|
|
return len;
|
|
}
|