moka/lib/array.h

21 lines
274 B
C

#ifndef MK_ARRAY_H
#define MK_ARRAY_H
#include "commons.h"
#include "vec.h"
struct value;
struct array
{
struct vec values;
};
void array_init(struct array* self);
void array_free(struct array* self);
void array_push_value(struct array* self, MOKA value);
#endif