eaarl-io  1.0.1+71abbd4
EAARL Input/Output Library (Public API)
All Data Structures Files Functions Variables Enumerations Enumerator Macros Pages
Data Structures | Macros
memory.h File Reference

Memory handler. More...

#include <stddef.h>

Go to the source code of this file.

Data Structures

struct  eaarlio_memory
 Memory handler structure. More...
 

Macros

#define eaarlio_memory_empty()
 Empty eaarlio_memory value. More...
 

Detailed Description

Memory handler.

This header provides a means by which to override how the library handles its memory allocation needs. All functions that perform memory allocation or deallocation accept an eaarlio_memory pointer. When not provided (i.e., when NULL), the C standard library (stdlib.h) is used.

If a function does not have an eaarlio_memory parameter, then it does not perform any memory allocation or deallocation.

Macro Definition Documentation

◆ eaarlio_memory_empty

#define eaarlio_memory_empty ( )
Value:
(struct eaarlio_memory) \
{ \
NULL, NULL, NULL, NULL, NULL \
}
Memory handler structure.
Definition: memory.h:41

Empty eaarlio_memory value.

All pointers will be NULL.