This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/euler/source/strings/strlen.cpp

12 lines
149 B
C++

#include <cstring>
namespace std {
size_t strlen(const char *str) {
size_t len = 0;
while (str[len])
++len;
return len;
}
}