1 /* rec_parse.h -- Grammar for xstroke recognition control file
2 
3    Copyright 2001 Carl Worth
4 
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9 
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14 */
15 
16 #ifndef REC_PARSE_H
17 #define REC_PARSE_H
18 
19 #include "rec_parse_tab.h"
20 
21 int rec_parse(rec_t *rec, char *file_name);
22 
23 #endif
24