blob: aad598c93fce61d40ac0bcded1957841544b9404 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <stdlib.h>
#include <ctype.h>
#include "b64.h"
#ifdef b64_USE_CUSTOM_MALLOC
extern void* b64_malloc(size_t);
#endif
#ifdef b64_USE_CUSTOM_REALLOC
extern void* b64_realloc(void*, size_t);
#endif
int b64_buf_malloc(b64_buffer_t * buf)
{
buf->ptr = b64_malloc(B64_BUFFER_SIZE);
if(!buf->ptr) return -1;
buf->bufc = 1;
return 0;
}
int b64_buf_realloc(b64_buffer_t* buf, size_t size)
{
if ((int)size > buf->bufc * B64_BUFFER_SIZE)
{
while ((int)size > buf->bufc * B64_BUFFER_SIZE) buf->bufc++;
buf->ptr = b64_realloc(buf->ptr, B64_BUFFER_SIZE * buf->bufc);
if (!buf->ptr) return -1;
}
return 0;
}
|