exip  Alpha 0.5.4
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
memManagement.h
Go to the documentation of this file.
1 /*==================================================================*\
2 | EXIP - Embeddable EXI Processor in C |
3 |--------------------------------------------------------------------|
4 | This work is licensed under BSD 3-Clause License |
5 | The full license terms and conditions are located in LICENSE.txt |
6 \===================================================================*/
7 
21 #ifndef MEMMANAGEMENT_H_
22 #define MEMMANAGEMENT_H_
23 
24 #include "errorHandle.h"
25 #include "procTypes.h"
26 
34 
43 void* memManagedAllocate(AllocList* list, size_t size);
44 
53 void freeAllMem(EXIStream* strm);
54 
61 void freeAllocList(AllocList* list);
62 
63 #endif /* MEMMANAGEMENT_H_ */