1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/c/core.h
2016-02-11 09:18:46 -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[58];
#endif