1 /* 7zBuf.h -- Byte Buffer
2 2017-04-03 : Igor Pavlov : Public domain */
17 void Buf_Init(CBuf
*p
);
18 int Buf_Create(CBuf
*p
, size_t size
, ISzAllocPtr alloc
);
19 void Buf_Free(CBuf
*p
, ISzAllocPtr alloc
);
28 void DynBuf_Construct(CDynBuf
*p
);
29 void DynBuf_SeekToBeg(CDynBuf
*p
);
30 int DynBuf_Write(CDynBuf
*p
, const Byte
*buf
, size_t size
, ISzAllocPtr alloc
);
31 void DynBuf_Free(CDynBuf
*p
, ISzAllocPtr alloc
);