"Fossies" - the Fresh Open Source Software Archive

Member "hashcat-6.2.6/deps/LZMA-SDK/C/7zAlloc.h" (2 Sep 2022, 385 Bytes) of package /linux/privat/hashcat-6.2.6.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /* 7zAlloc.h -- Allocation functions
    2 2017-04-03 : Igor Pavlov : Public domain */
    3 
    4 #ifndef __7Z_ALLOC_H
    5 #define __7Z_ALLOC_H
    6 
    7 #include "7zTypes.h"
    8 
    9 EXTERN_C_BEGIN
   10 
   11 void *SzAlloc(ISzAllocPtr p, size_t size);
   12 void SzFree(ISzAllocPtr p, void *address);
   13 
   14 void *SzAllocTemp(ISzAllocPtr p, size_t size);
   15 void SzFreeTemp(ISzAllocPtr p, void *address);
   16 
   17 EXTERN_C_END
   18 
   19 #endif