mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-07 11:58:13 +00:00
ADDED: MemAlloc() / MemFree() #1440
Exposing internal memory allocator/free, useful for advance users when required
This commit is contained in:
12
src/utils.c
12
src/utils.c
@@ -163,6 +163,18 @@ void TraceLog(int logType, const char *text, ...)
|
||||
#endif // SUPPORT_TRACELOG
|
||||
}
|
||||
|
||||
// Internal memory allocator
|
||||
void *MemAlloc(int size)
|
||||
{
|
||||
return RL_MALLOC(size);
|
||||
}
|
||||
|
||||
// Internal memory free
|
||||
void MemFree(void *ptr)
|
||||
{
|
||||
RL_FREE(ptr);
|
||||
}
|
||||
|
||||
// Load data from file into a buffer
|
||||
unsigned char *LoadFileData(const char *fileName, unsigned int *bytesRead)
|
||||
{
|
||||
|
Reference in New Issue
Block a user