1 #ifndef MAIN_INCLUDE 2 #define MAIN_INCLUDE 3 4 typedef struct { 5 unsigned int isLibrarySource:1; 6 int disable_df; 7 int no_ext_instr; 8 int no_warn_non_free; 9 } pic14_options_t; 10 11 extern pic14_options_t pic14_options; 12 extern int debug_verbose; 13 14 #endif 15 16