/* %Z%%M% %I% %E% */ /* * Copyright (c) 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 declares the need table manipulation routines: */ #ifndef NEED_EXPORTS_H #define NEED_EXPORTS_H #ifndef GEN_TYPES_H #include "gen_types.h" #endif #ifndef HEAP_TYPES_H #include "heap_types.h" #endif #ifndef NEED_TYPES_H #include "need_types.h" #endif #ifndef ROUTINE_TYPES_H #include "routine_types.h" #endif #ifndef TABLE_TYPES_H #include "table_types.h" #endif #ifndef TYPE_TYPES_H #include "type_types.h" #endif #ifndef VECTOR_TYPES_H #include "vector_types.h" #endif extern Need_table need_table_create(Routine, Str, Type_ref, Type_tables, Heap); extern int need_table_data_gen(Need_table, Gen); extern void need_table_object_insert(Need_table, Str, Type_ref, Type_ref); extern void need_table_routine_insert(Need_table, Str, Type_ref, Type_proto); extern void need_table_typedef_gen(Need_table, Gen); #endif /* NEED_EXPORTS_H */