Got the string concat funcion working.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user