diff options
Diffstat (limited to 'src/translators/btparse/parse_auxiliary.h')
-rw-r--r-- | src/translators/btparse/parse_auxiliary.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/translators/btparse/parse_auxiliary.h b/src/translators/btparse/parse_auxiliary.h new file mode 100644 index 0000000..5500513 --- /dev/null +++ b/src/translators/btparse/parse_auxiliary.h @@ -0,0 +1,32 @@ +/* ------------------------------------------------------------------------ +@NAME : parse_auxiliary.h +@INPUT : +@OUTPUT : +@RETURNS : +@DESCRIPTION: Prototype declarations for functions in parse_auxiliary.c +@GLOBALS : +@CALLS : +@CREATED : 1997/01/08, Greg Ward +@MODIFIED : +@VERSION : $Id: parse_auxiliary.h,v 1.5 1999/11/29 01:13:10 greg Rel $ +@COPYRIGHT : Copyright (c) 1996-99 by Gregory P. Ward. All rights reserved. + + This file is part of the btparse library. This library is + free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. +-------------------------------------------------------------------------- */ + +#ifndef PARSE_AUXILIARY_H +#define PARSE_AUXILIARY_H + +#include "stdpccts.h" /* for SetWordType typedef */ + +void fix_token_names (void); +void zzsyn (const char *text, int tok, + char *egroup, SetWordType *eset, int etok, + int k, const char *bad_text); +void check_field_name (AST * field); + +#endif /* PARSE_AUXILIARY_H */ |