Got the string concat funcion working.

This commit is contained in:
2019-09-01 17:51:28 -05:00
parent 658a380f9a
commit 5b66184ea0
7 changed files with 87 additions and 45 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ typedef struct MemoryChunk
struct MemoryChunk* Prev;
struct MemoryChunk* Next;
size_t Size;
bool Allocated;
bool Allocated;
};
static struct MemoryChunk* First;
@@ -19,4 +19,4 @@ void* Malloc(size_t size);
void Free(void* ptr);
#endif
#endif