libabacus/src/basetype.c

13 lines
396 B
C
Raw Normal View History

#include "basetype.h"
#include "util.h"
#include <stdlib.h>
2018-04-24 18:28:20 -07:00
void libab_basetype_init(libab_basetype* basetype,
void (*free_function)(void*), int n,
2018-04-21 14:09:01 -07:00
const libab_basetype_param params[]) {
basetype->params = params;
basetype->count = n;
2018-04-24 18:28:20 -07:00
basetype->free_function = free_function;
}
2018-04-21 14:09:01 -07:00
void libab_basetype_free(libab_basetype* basetype) {}