This commit is contained in:
Nishi 2025-11-22 17:36:48 +09:00
commit 760db962ea
Signed by: nishi
GPG key ID: 27EF69B208EB9343
12 changed files with 273 additions and 154 deletions

9
core/string.c Normal file
View file

@ -0,0 +1,9 @@
#include <MDE/Core/String.h>
char* MDEStringDuplicate(const char* src) {
char* s = malloc(strlen(src) + 1);
strcpy(s, src);
return s;
}