refactor(file structure): seperated files in seperate folders

This commit is contained in:
Mineplay 2025-04-12 17:05:14 -05:00
parent 33936eb001
commit c091d0dcc4
4 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@
#include <stddef.h>
#include <stdbool.h>
#include "Error.h"
#include "../Utils/Error.h"
void *hallocy_malloc(size_t size);
HallocyError hallocy_free(void *pointer);

View file

@ -20,7 +20,7 @@
* Author: Mineplay
* -----------------------------------------------------------------------------
*/
#include "../Include/Hallocy/Allocator.h"
#include "../../Include/Hallocy/Core/Allocator.h"
#if defined(_WIN32)
#include <windows.h>

View file

@ -20,7 +20,7 @@
* -----------------------------------------------------------------------------
*/
#include <stdio.h>
#include <Hallocy/Allocator.h>
#include <Hallocy/Core/Allocator.h>
int main() {
char *memory = (char *)hallocy_malloc(12288);