Remove currently unused file.
This commit is contained in:
parent
5492aa6f63
commit
1158b29c1b
11
src/types.c
11
src/types.c
|
@ -1,11 +0,0 @@
|
||||||
#include "types.h"
|
|
||||||
|
|
||||||
libab_result libab_array_init(libab_array* array) {
|
|
||||||
return libab_ref_vec_init(&array->elems);
|
|
||||||
}
|
|
||||||
|
|
||||||
libab_result libab_array_insert(libab_array* array, libab_ref* value) {
|
|
||||||
return libab_ref_vec_insert(&array->elems, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
void libab_array_free(libab_array* array) { libab_ref_vec_free(&array->elems); }
|
|
Loading…
Reference in New Issue
Block a user