/* %Z%%M% %I% %E% */ /* * Copyright (c) 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 declares the message manipulation routines: */ #ifndef MSG_EXPORTS_H #define MSG_EXPORTS_H #ifndef HEAP_TYPES_H #include "heap_types.h" #endif #ifndef FLAGS_TYPES_H #include "flags_types.h" #endif #ifndef MSG_TYPES_H #include "msg_types.h" #endif #ifndef STR_TYPES_H #include "str_types.h" #endif extern int msg_count_get(Msg); extern Msg msg_create(Flags, Heap); extern void msg_line_append(Msg, int); extern int msg_line_get(Msg, int); extern void msg_out(Msg, int, Str, ...); #endif /* MSG_EXPORTS_H */