You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
380 B
24 lines
380 B
10 months ago
|
/* 7zAlloc.h -- Allocation functions
|
||
|
2013-03-25 : Igor Pavlov : Public domain */
|
||
|
|
||
|
#ifndef __7Z_ALLOC_H
|
||
|
#define __7Z_ALLOC_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
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);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|