diff options
Diffstat (limited to 'euler/source/strings')
-rw-r--r-- | euler/source/strings/memcpy.cpp | 14 | ||||
-rw-r--r-- | euler/source/strings/strlen.cpp | 12 |
2 files changed, 0 insertions, 26 deletions
diff --git a/euler/source/strings/memcpy.cpp b/euler/source/strings/memcpy.cpp deleted file mode 100644 index d5a1d6c..0000000 --- a/euler/source/strings/memcpy.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include <stdint.h> -#include <cstring> - -namespace std { - - void *memcpy(void *dest, const void *src, size_t count) { - uint8_t *d8 = (uint8_t *)dest; - const uint8_t *s8 = (const uint8_t *)src; - for (size_t i = 0; i < count; ++i) - d8[i] = s8[i]; - return dest; - } - -} diff --git a/euler/source/strings/strlen.cpp b/euler/source/strings/strlen.cpp deleted file mode 100644 index 7a6fe2a..0000000 --- a/euler/source/strings/strlen.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include <cstring> - -namespace std { - - size_t strlen(const char *str) { - size_t len = 0; - while (str[len]) - ++len; - return len; - } - -} |