/* %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 module manipulation routines: */

#ifndef MODULE_EXPORTS_H
#define MODULE_EXPORTS_H

#ifndef CALL_TYPES_H
#include "call_types.h"
#endif

#ifndef MODULE_TYPES_H
#include "module_types.h"
#endif

#ifndef GEN_TYPES_H
#include "gen_types.h"
#endif

#ifndef PARSER_TYPES_H
#include "parser_types.h"
#endif

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

extern void	module_convert(Module, Convert);
extern void	module_gen(Module, Gen);
extern void	module_imports_read(Module, Gen);
extern Module	module_parse(Parser);
extern void	module_print(Module, Gen);
extern void	module_write(Module, Gen, Str);

#endif /* MODULE_EXPORTS_H */
