RetroArch/deps/7zip/7zBuf.c

38 lines
592 B
C
Raw Normal View History

/* 7zBuf.c -- Byte Buffer
2014-10-16 17:03:28 +00:00
2008-03-28
Igor Pavlov
Public domain */
#include <stdint.h>
#include "7zBuf.h"
void Buf_Init(CBuf *p)
{
2014-10-16 17:03:28 +00:00
p->data = 0;
p->size = 0;
}
int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc)
{
2014-10-16 17:03:28 +00:00
p->size = 0;
if (size == 0)
{
p->data = 0;
return 1;
}
p->data = (uint8_t *)alloc->Alloc(alloc, size);
2014-10-16 17:03:28 +00:00
if (p->data != 0)
{
p->size = size;
return 1;
}
return 0;
}
void Buf_Free(CBuf *p, ISzAlloc *alloc)
{
2014-10-16 17:03:28 +00:00
alloc->Free(alloc, p->data);
p->data = 0;
p->size = 0;
}