1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/c/core.h
Joel Martin b8ee29b22f All: add keywords.
Also, fix nth and count to match cloure.
2015-01-09 16:16:50 -06:00

16 lines
229 B
C

#ifndef __MAL_CORE__
#define __MAL_CORE__
#include <glib.h>
// namespace of type functions
typedef struct {
char *name;
void *(*func)(void*);
int arg_cnt;
} core_ns_entry;
extern core_ns_entry core_ns[56];
#endif