/* %Z%%M% %I% %E% */ /* * Copyright (c) 1990, 1991, 1992, 1995 by Wayne C. Gramlich. * All rights reserved. * * Permission to use, copy, modify, distribute, and sell this software * for any purpose is hereby granted without fee provided that the above * copyright notice and this permission are retained. The author makes * no representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. */ /* This file contains declarations for statement manipulation routines: */ #ifndef STATEMENT_EXPORTS_H #define STATEMENT_EXPORTS_H #ifndef CALL_TYPES_H #include "call_types.h" #endif #ifndef EXP_TYPES_H #include "exp_types.h" #endif #ifndef GEN_TYPES_H #include "gen_types.h" #endif #ifndef HASH_TYPES_H #include "hash_types.h" #endif #ifndef PARSER_TYPES_H #include "parser_types.h" #endif #ifndef STATEMENT_TYPES_H #include "statement_types.h" #endif #ifndef TYPE_TYPES_H #include "type_types.h" #endif #ifndef VECTOR_TYPES_H #include "vector_types.h" #endif extern void statement_breakpoint(Breakpoint, Gen, int); extern void statement_list_convert(Vec(Statement), Convert); extern void statement_list_gen(Vec(Statement), Gen, int); extern void statement_list_print(Vec(Statement), Stdio, int); extern Vec(Statement_cond) statement_parse(Parser, Vec(Statement), Vec(Statement_cond), Routine); #endif /* STATEMENT_EXPORTS_H */