#include "acpp.h"
#include <stdio.h>
Include dependency graph for acpp.c:
Go to the source code of this file.
Functions | |
int | yyparse () |
void | acppInit () |
int | acppLoad (char *filename) |
void | acppUnload () |
int | acppRun () |
Variables | |
FILE * | yyin = (FILE *) 0 *yyout = (FILE *) 0 |
int | line_num |
Input file line counter. |
This file contains wrapper functions to interface with the GNU bison/flex files. In the future it should scale to support an intermediate file representation.
Definition in file acpp.c.
|
Initializes the pre-processor. Always call this before any other Acpp calls. |
|
Loads the file to be used by the AcppRun() call. Definition at line 61 of file acpp.c. References acppUnload(). |
Here is the call graph for this function:
|
Calls the parser using the file associated with AcppLoad(). Definition at line 81 of file acpp.c. References line_num. |
|
Unloads any previous loaded file. Definition at line 71 of file acpp.c. Referenced by acppLoad(). |