1370b324cSopenharmony_ci/* 7zAlloc.h -- Allocation functions 2370b324cSopenharmony_ci2023-03-04 : Igor Pavlov : Public domain */ 3370b324cSopenharmony_ci 4370b324cSopenharmony_ci#ifndef ZIP7_INC_7Z_ALLOC_H 5370b324cSopenharmony_ci#define ZIP7_INC_7Z_ALLOC_H 6370b324cSopenharmony_ci 7370b324cSopenharmony_ci#include "7zTypes.h" 8370b324cSopenharmony_ci 9370b324cSopenharmony_ciEXTERN_C_BEGIN 10370b324cSopenharmony_ci 11370b324cSopenharmony_civoid *SzAlloc(ISzAllocPtr p, size_t size); 12370b324cSopenharmony_civoid SzFree(ISzAllocPtr p, void *address); 13370b324cSopenharmony_ci 14370b324cSopenharmony_civoid *SzAllocTemp(ISzAllocPtr p, size_t size); 15370b324cSopenharmony_civoid SzFreeTemp(ISzAllocPtr p, void *address); 16370b324cSopenharmony_ci 17370b324cSopenharmony_ciEXTERN_C_END 18370b324cSopenharmony_ci 19370b324cSopenharmony_ci#endif 20