mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-24 15:31:17 +00:00
11 lines
357 B
C
11 lines
357 B
C
/*************************************
|
|
* C02 Include File Parsing Routines *
|
|
*************************************/
|
|
|
|
char line[255]; /*Entire line parsed from include file*/
|
|
|
|
void logdef(); //Print Definition Table to Log File
|
|
void pdefin(); //Process define directive
|
|
void pincfl(); //Process include file
|
|
void pprgma(); //Parse Pragma Directive
|