* src/SDCCval.c, src/SDCCval.h:
[fw/sdcc] / src / pic / main.h
1 #ifndef MAIN_INCLUDE
2 #define MAIN_INCLUDE
3
4 typedef struct {
5   unsigned int isLibrarySource:1;
6   int disable_df;
7 } pic14_options_t;
8
9 extern pic14_options_t pic14_options;
10
11 bool x_parseOptions (char **argv, int *pargc);
12 void x_setDefaultOptions (void);
13 void x_finaliseOptions (void);
14
15 #endif