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.
15 lines
311 B
15 lines
311 B
/* 7zAlloc.h -- Allocation functions |
|
2010-10-29 : Igor Pavlov : Public domain */ |
|
|
|
#ifndef __7Z_ALLOC_H |
|
#define __7Z_ALLOC_H |
|
|
|
#include <stdlib.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
|
|
|