moka/lib/native.c

13 lines
181 B
C
Raw Normal View History

#include "native.h"
void native_init(struct native* self, native_fun_t fun)
{
assert(self);
self->fun = fun;
}
void native_free(struct native* self)
{
assert(self);
}