Files
klisp/shared.c
Sam Stevens cb8fa74fe7 Added basic string support.
Added comments beginning with a semi-colon.
Added load function to load lisp from a file.
Arguments passed to klisp will be read and evaluated as lisp files.
2014-05-31 16:48:58 +01:00

8 lines
144 B
C

#include <stdlib.h>
#include "shared.h"
#include "mpc.h"
mpc_parser_t* gLispy = NULL;
size_t gParserCount = 0;
mpc_parser_t** gParsers = NULL;