summaryrefslogtreecommitdiff
path: root/src/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.h')
-rw-r--r--src/string.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/string.h b/src/string.h
new file mode 100644
index 0000000..3f0e200
--- /dev/null
+++ b/src/string.h
@@ -0,0 +1,9 @@
1#pragma once
2
3#include <stddef.h>
4
5void* memcpy(void* dest, const void* src, size_t count);
6
7char* utoa(unsigned int x, char* buffer, size_t size);
8char* ptoa(const void* ptr, char* buffer, size_t size);
9