open-axiom repository from github
/*1Copyright (C) 1991-2002, The Numerical Algorithms Group Ltd.2All rights reserved.3Copyright (C) 2007-2010, Gabriel Dos Reis.4All rights reserved.56Redistribution and use in source and binary forms, with or without7modification, are permitted provided that the following conditions are8met:910- Redistributions of source code must retain the above copyright11notice, this list of conditions and the following disclaimer.1213- Redistributions in binary form must reproduce the above copyright14notice, this list of conditions and the following disclaimer in15the documentation and/or other materials provided with the16distribution.1718- Neither the name of The Numerical Algorithms Group Ltd. nor the19names of its contributors may be used to endorse or promote products20derived from this software without specific prior written permission.2122THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS23IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED24TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A25PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER26OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,27EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,28PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR29PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF30LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING31NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS32SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.33*/3435#ifndef _PARSE_TYPES_H_36#define _PARSE_TYPES_H_ 13738#include "hyper.h"3940extern void parse_begin_items(void );41extern void parse_box(void );42extern void parse_button(void );43extern void parse_centerline(void );44extern void parse_command(void );45extern void parse_env(TextNode * node);46extern void parse_free(void );47extern void parse_help(void );48extern void parse_ifcond(void );49extern void parse_input_pix(void );50extern void parse_item(void );51extern void parse_mbox(void );52extern void parse_mitem(void );53extern void parse_newcond(void );54extern void parse_setcond(void );55extern void parse_spadcommand(TextNode * spad_node);56extern void parse_spadsrc(TextNode * spad_node);57extern void parse_table(void );58extern void parse_value1(void );59extern void parse_value2(void );60extern void parse_verbatim(int type);61extern void show_text(TextNode * node , int Ender);6263extern bool gInButton;64extern bool gInIf;65extern bool gInItems;66extern bool gInOptional;676869#endif707172