/*
** allgemeine Support-Funktionen
**
** Copyright (C) 1996 by Stefan Scherer.
**
** Permission to use, copy, modify, and distribute this software and its
** documentation for non-commerical use and without fee is hereby granted,
** provided that the above copyright notice appear in all copies and that
** both that copyright notice and this permission notice appear in
** supporting documentation.  This software is provided "as is" without
** express or implied warranty.
*/

#ifndef MISCSUPPORT_H
#define MISCSUPPORT_H

void InsertSorted (struct List *list, struct Node *node, struct Node *listnode,
		   int (*cmpfunc) (const void *, const void *));

STRPTR GetPublicScreenName (struct Screen *screen);

BOOL CheckName (STRPTR teil, STRPTR name);
BOOL CheckNameArray (STRPTR teil, STRPTR array[]);

#endif /* MISCSUPPORT_H */
