mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-16 20:11:41 -06:00
18 lines
307 B
C
Executable File
18 lines
307 B
C
Executable File
/* 7zAlloc.h -- Allocation functions
|
|
2008-03-28
|
|
Igor Pavlov
|
|
Public domain */
|
|
|
|
#ifndef __7Z_ALLOC_H
|
|
#define __7Z_ALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *SzAlloc(void *p, size_t size);
|
|
void SzFree(void *p, void *address);
|
|
|
|
void *SzAllocTemp(void *p, size_t size);
|
|
void SzFreeTemp(void *p, void *address);
|
|
|
|
#endif
|