#include <stdio.h>#include <assert.h>#include <limits.h>#include <stdlib.h>#include "chunkallocator.h"Include dependency graph for chunkallocator.c:

Go to the source code of this file.
Functions | |
| int | chunkallocator_increase (chunkallocator *a) |
| Allocate a new chunkblock. | |
| chunkallocator * | chunkallocator_new (size_t binsize) |
| Create a new chunkallocator. | |
| void | chunkallocator_destroy (chunkallocator *a) |
| Destroy chunkallocator. | |
| void * | chunkallocator_alloc (chunkallocator *a) |
| Allocate chunk. | |
| void | chunkallocator_free (chunkallocator *a, void *memblock) |
| Free a chunk. | |
1.2.18