home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Telnet 2.7b5 / source / config / LinkedList.proto.h < prev    next >
Encoding:
Text File  |  1995-04-09  |  797 b   |  16 lines  |  [TEXT/CWIE]

  1. //LinkedList.proto.h
  2.  
  3. #include "LinkedList.h"
  4.  
  5. LinkedListNode *createSortedList(ResType ConfigResourceType,short numberofitems,Str255 placeThisFirst);
  6. void deleteItem(LinkedListNode **theHead,Str255 ItemName);
  7. LinkedListNode *findNode(LinkedListNode *theHead,Str255 ItemName);
  8. short reSortElement(LinkedListNode **theHead, LinkedListNode *theChangedElement);
  9. void insertInSortedList(LinkedListNode **head, LinkedListNode *newItem);
  10. void deleteList(LinkedListNode **theHead);
  11. short createNodeAndSort(LinkedListNode **head, Str255 theName);
  12. short findNodeIndex(LinkedListNode *theHead,Str255 ItemName);
  13. short findClosestNodeIndex(LinkedListNode *theHead,Str255 ItemName);
  14. void addListToMenu(MenuHandle theMenu, LinkedListNode *theHead);
  15. void getAUniqueName(LinkedListNode *theHead, Str255 theName);
  16.