/* %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 the declarations for manipulationg the gen object: */ #ifndef GEN_EXPORTS_H #define GEN_EXPORTS_H #ifndef GEN_TYPES_H #include "gen_types.h" #endif #ifndef PORT_H #include "port.h" #endif #ifndef STR_TYPES_H #include "str_types.h" #endif #ifndef VECTOR_TYPES_H #include "vector_types.h" #endif extern void gen_comment(Gen, Str, int); extern void gen_comments(Gen, Vec(Str), int); extern void gen_indented_list(Gen, Vec(Pointer), Gen_routine, int); extern void gen_out(Gen, Str, ...); #endif /* GEN_EXPORTS_H */