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