1 /*
2  * Copyright (c) Tony Bybell 2009.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  */
9 
10 #include "globals.h"
11 
12 #ifndef WAVE_EXTRDR_H
13 #define WAVE_EXTRDR_H
14 
15 #ifdef HAVE_INTTYPES_H
16 #include <inttypes.h>
17 #endif
18 
19 #include "vcd.h"
20 
21 #define EXTLOAD "EXTLOAD | "
22 
23 TimeType 	extload_main(char *fname, char *skip_start, char *skip_end);
24 void 		import_extload_trace(nptr np);
25 
26 /* FsdbReader adds */
27 void 		fsdb_import_masked(void);
28 void 		fsdb_set_fac_process_mask(nptr np);
29 
30 #endif
31 
32