libc cleanup (#1568)

* libc cleanup

* Suggested changes, small alloca tweak

* Remove printf include
This commit is contained in:
Tharo
2023-10-27 15:06:44 +01:00
committed by GitHub
parent 4e55168eaa
commit 3475651701
46 changed files with 571 additions and 432 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef STRING_H
#define STRING_H
#include "stddef.h"
char* strchr(const char*, int);
size_t strlen(const char*);
void* memcpy(void*, const void*, size_t);
#endif