diff options
Diffstat (limited to '')
| -rw-r--r-- | src/string/memcpy.c | 1 | ||||
| -rw-r--r-- | src/string/memmove.c | 1 | ||||
| -rw-r--r-- | src/string/memset.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/string/memcpy.c b/src/string/memcpy.c index 02479cd..54482fb 100644 --- a/src/string/memcpy.c +++ b/src/string/memcpy.c @@ -32,7 +32,6 @@ */ void* memcpy(void* restrict whither, const void* restrict whence, size_t size) { - /* TODO improve implementation of memcpy */ char* d = whither; char* s = whence; while (size--) diff --git a/src/string/memmove.c b/src/string/memmove.c index c721609..0acc47b 100644 --- a/src/string/memmove.c +++ b/src/string/memmove.c @@ -29,7 +29,6 @@ */ void* memmove(void* whither, const void* whence, size_t size) { - /* TODO improve implementation of memcpy */ char* d = whither; const char* s = whence; if ((size_t)(d - s) < size) diff --git a/src/string/memset.c b/src/string/memset.c index f8c153a..df36052 100644 --- a/src/string/memset.c +++ b/src/string/memset.c @@ -29,7 +29,6 @@ */ void* memset(void* segment, int c, size_t size) { - /* TODO improve implementation of memset */ char* s = segment; while (size--) *s++ = (char)c; |
