1
1
mirror of https://github.com/kanaka/mal.git synced 2024-11-10 12:47:45 +03:00
mal/c/core.h
Joel Martin db4c329aff All: perf test, Makefile refactor, add *host-language*
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
2014-04-17 21:49:07 -05: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[54];
#endif