diff options
author | 3gg <3gg@shellblade.net> | 2025-10-15 19:32:21 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-10-15 19:32:21 -0700 |
commit | 55bcdf37342d782c723166de54ff031d09b1281f (patch) | |
tree | 11a95bfb390ba6f73e122a17fe0a00312f25dc78 /src/string.h | |
parent | c099bcb7402421985e6e8c025e8cde591eaa073a (diff) |
Clear framebuffer to pink
Diffstat (limited to 'src/string.h')
-rw-r--r-- | src/string.h | 9 |
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 | |||
5 | void* memcpy(void* dest, const void* src, size_t count); | ||
6 | |||
7 | char* utoa(unsigned int x, char* buffer, size_t size); | ||
8 | char* ptoa(const void* ptr, char* buffer, size_t size); | ||
9 | |||