Implement step 4
[jackhill/mal.git] / 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
4c14a8b8 13extern core_ns_entry core_ns[58];
ea81a808
JM
14
15#endif