summaryrefslogtreecommitdiffstats
path: root/lib/string.h
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2016-11-24 21:55:24 +0000
committerTomasz Kramkowski <tk@the-tk.com>2016-11-24 21:55:24 +0000
commit6bd06e042da524448dae7e48a7499517948be2b8 (patch)
tree2631f21fb3f50f9f880e530d37a4cdaecaecf1a3 /lib/string.h
parentc6419bba0cafa16e925b8bc5e028dba138c853b9 (diff)
downloadfmk-6bd06e042da524448dae7e48a7499517948be2b8.tar.gz
fmk-6bd06e042da524448dae7e48a7499517948be2b8.tar.xz
fmk-6bd06e042da524448dae7e48a7499517948be2b8.zip
don't use memcpy and memset for now
Diffstat (limited to 'lib/string.h')
-rw-r--r--lib/string.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/string.h b/lib/string.h
deleted file mode 100644
index 9c204dd..0000000
--- a/lib/string.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef LIB_STRING_H
-#define LIB_STRING_H
-
-#include <stddef.h>
-
-void *memcpy(void * restrict dest, const void * restrict src, size_t n);
-void *memmove(void *dest, const void *src, size_t n);
-void *memset(void *s, int c, size_t n);
-
-#endif /* LIB_STRING_H */