1c9e2be55Smrg/* $XConsortium: mlist.h,v 2.4 89/05/04 15:11:31 converse Exp $ */ 2c9e2be55Smrg/* 3c9e2be55Smrg * COPYRIGHT 1987 4c9e2be55Smrg * DIGITAL EQUIPMENT CORPORATION 5c9e2be55Smrg * MAYNARD, MASSACHUSETTS 6c9e2be55Smrg * ALL RIGHTS RESERVED. 7c9e2be55Smrg * 8c9e2be55Smrg * THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND 9c9e2be55Smrg * SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION. 10c9e2be55Smrg * DIGITAL MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE FOR 11c9e2be55Smrg * ANY PURPOSE. IT IS SUPPLIED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY. 12c9e2be55Smrg * 13c9e2be55Smrg * IF THE SOFTWARE IS MODIFIED IN A MANNER CREATING DERIVATIVE COPYRIGHT RIGHTS, 14c9e2be55Smrg * APPROPRIATE LEGENDS MAY BE PLACED ON THE DERIVATIVE WORK IN ADDITION TO THAT 15c9e2be55Smrg * SET FORTH ABOVE. 16c9e2be55Smrg * 17c9e2be55Smrg * 18c9e2be55Smrg * Permission to use, copy, modify, and distribute this software and its 19c9e2be55Smrg * documentation for any purpose and without fee is hereby granted, provided 20c9e2be55Smrg * that the above copyright notice appear in all copies and that both that 21c9e2be55Smrg * copyright notice and this permission notice appear in supporting documentation, 22c9e2be55Smrg * and that the name of Digital Equipment Corporation not be used in advertising 23c9e2be55Smrg * or publicity pertaining to distribution of the software without specific, 24c9e2be55Smrg * written prior permission. 25c9e2be55Smrg */ 26c9e2be55Smrg/* $XFree86$ */ 27c9e2be55Smrg 28c9e2be55Smrg#ifndef _mlist_h 29c9e2be55Smrg#define _mlist_h 30c9e2be55Smrg 31c9e2be55Smrgextern MsgList MakeNullMsgList(void); 32c9e2be55Smrgextern void AppendMsgList(MsgList, Msg); 33c9e2be55Smrgextern void DeleteMsgFromMsgList(MsgList, Msg); 34c9e2be55Smrgextern MsgList MakeSingleMsgList(Msg); 35c9e2be55Smrgextern void FreeMsgList(MsgList); 36c9e2be55Smrgextern MsgList StringToMsgList(Toc, char *); 37c9e2be55Smrg 38c9e2be55Smrg#endif /* _mlist_h */ 39