Team Fortress 2 Source Code as on 22/4/2020
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

  1. /* 7zAlloc.h -- Allocation functions
  2. 2010-10-29 : Igor Pavlov : Public domain */
  3. #ifndef __7Z_ALLOC_H
  4. #define __7Z_ALLOC_H
  5. #include <stdlib.h>
  6. void *SzAlloc(void *p, size_t size);
  7. void SzFree(void *p, void *address);
  8. void *SzAllocTemp(void *p, size_t size);
  9. void SzFreeTemp(void *p, void *address);
  10. #endif