pifile.h
Go to the documentation of this file.
1 
9 #ifndef PIFILE_H
10 #define PIFILE_H
11 #include "pilisp.h"
12 #include <stdio.h>
13 
14 void write_compiler_expression_to_file(char * file_name, cell * to_compilate);
15 void write_compiler_to_file(char * file_name);
16 void write_program_to_file(char *file_name, char *program_text);
17 cell *parse_file(char *file_path);
18 
19 #endif // !PI_FILE
void write_compiler_to_file(char *file_name)
Definition: pifile.c:50
cell * parse_file(char *file_path)
Definition: pifile.c:12
Basic Lisp entity.
Definition: picell.h:44
void write_program_to_file(char *file_name, char *program_text)
Definition: pifile.c:3
void write_compiler_expression_to_file(char *file_name, cell *to_compilate)
Definition: pifile.c:34