blob: 9a587523502ad4d9c22bd980eb38725873b199ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef PTYCON_MEMFN_IMPL_H
#define PTYCON_MEMFN_IMPL_H
#include <stdint.h>
struct ptyc_memory_block {
void * addr;
size_t size;
size_t used;
size_t avail;
size_t buffer[];
};
void * ptyc_calloc(size_t n, size_t size);
void ptyc_free(void * addr);
void * ptyc_balloc(
struct ptyc_memory_block * cache,
struct ptyc_memory_block * block,
size_t n, size_t size);
#endif
|