Change quasiquote algorithm
[jackhill/mal.git] / impls / c / core.h
... / ...
CommitLineData
1#ifndef __MAL_CORE__
2#define __MAL_CORE__
3
4#include <glib.h>
5
6// namespace of type functions
7typedef struct {
8 char *name;
9 void *(*func)(void*);
10 int arg_cnt;
11} core_ns_entry;
12
13extern core_ns_entry core_ns[62];
14
15#endif