[BACK]Return to lst.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/lst.h between version 1.14 and 1.15

version 1.14, 2000/06/17 14:34:04 version 1.15, 2000/06/17 14:38:17
Line 109 
Line 109 
 /*  /*
  * Creation/destruction functions   * Creation/destruction functions
  */   */
   /* CTOR/DTOR, ala C++ */
   void            Lst_Init __P((Lst));
   void            Lst_Destroy __P((Lst, SimpleProc));
   
 /* Create a new list */  /* Create a new list */
 Lst             Lst_Init __P((void));  Lst             Lst_New __P((void));
   /* Destroy an old one */
   void            Lst_Delete __P((Lst, SimpleProc));
 /* Duplicate an existing list */  /* Duplicate an existing list */
 Lst             Lst_Duplicate __P((Lst, DuplicateProc));  Lst             Lst_Duplicate __P((Lst, DuplicateProc));
 /* Destroy an old one */  
 void            Lst_Destroy __P((Lst, SimpleProc));  
 /* True if list is empty */  /* True if list is empty */
 Boolean         Lst_IsEmpty __P((Lst));  Boolean         Lst_IsEmpty __P((Lst));
   

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15