1 #ifndef __cfparse_misc_H
2 #define __cfparse_misc_H
4 * Copyright (c) 2001 Picture Elements, Inc.
5 * Stephen Williams (steve@picturel.com)
7 * This source code is free software; you can redistribute it
8 * and/or modify it in source code form under the terms of the GNU
9 * General Public License as published by the Free Software
10 * Foundation; either version 2 of the License, or (at your option)
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
23 #ident "$Id: cfparse_misc.h,v 1.6 2004/02/15 18:03:30 steve Exp $"
27 * The vlltype supports the passing of detailed source file location
28 * information between the lexical analyzer and the parser. Defining
29 * YYLTYPE compels the lexor to use this type and not something other.
33 unsigned first_column
;
38 # define YYLTYPE struct cfltype
41 int cferror(const char *);
43 void switch_to_command_file(const char *);