#ifndef CLIB_SORTLIST_PROTOS_H
#define CLIB_SORTLIST_PROTOS_H

/*
**
**  $VER: SortList_protos.h 1.0 (30.10.94)
**
**  SortList - Ways to sort lists
**
**  Copyright © 1994 Preben Nielsen
**
**  Freely Distributable
**
*/

#include <exec/types.h>

#ifdef __SASC
APTR __asm SortChain(register __a0 APTR, register __a1 BOOL (*)(), register __d0 ULONG);
VOID __asm SortExecList(register __a0 struct List *list,  register __a1 BOOL (*)(), register __d0 ULONG);
#endif

#ifdef _DCC
APTR SortChain(__A0 APTR, __A1 BOOL (*)(), __D0 ULONG);
VOID SortExecList(__A0 struct List *list, __A1 BOOL (*)(), __D0 ULONG);
#endif
  
#endif   /* CLIB_SORTLIST_PROTOS_H */
