1 
2 // epd.h
3 
4 #ifndef EPD_H
5 #define EPD_H
6 
7 // includes
8 
9 #include "util.h"
10 
11 // functions
12 
13 extern void epd_test   (int argc, char * argv[]);
14 
15 extern bool epd_get_op (const char record[], const char opcode[], char string[], int size);
16 
17 #endif // !defined EPD_H
18 
19 // end of epd.h
20 
21