mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
db4c329aff
Other: - bash,make,postscript: quasiquote of vectors - Fix Java slurp - add time function to core.mal - switches on *host-language* for make time-secs vs time-ms - Ignore */experiments directories
16 lines
229 B
C
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[54];
|
|
|
|
#endif
|