pilisp.h
Go to the documentation of this file.
1 
9 
10 #ifndef PILISP_h
11 #define PILISP_h
12 #define PROMPT_STRING "pi>"
13 #include "pibuiltin.h"
14 #include "picell.h"
15 #include "picore.h"
16 #include "pierror.h"
17 #include "pifile.h"
18 #include "piinit.h"
19 #include "piparser.h"
20 #include "piprint.h"
21 #include "pisettings.h"
22 #include <ctype.h>
23 #include <errno.h>
24 #include <error.h>
25 #include <setjmp.h>
26 #include <stdbool.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 
31 /********************************************************************************
32 * Variables for Handling Errors
33 ********************************************************************************/
35 jmp_buf env_buf;
36 
37 /********************************************************************************
38  * Basic Interpreter Functions
39  ********************************************************************************/
40 
41 int pi_prompt();
42 int pi_parse_args_files(int argc, char **argv);
43 
44 #endif // !PILISP_h
int pi_parse_args_files(int argc, char **argv)
Definition: pilisp.c:72
int jmp_destination
Definition: pilisp.h:34
jmp_buf env_buf
Definition: pilisp.h:35
int pi_prompt()
Definition: pilisp.c:3