[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.23 and 1.24

version 1.23, 2001/11/11 06:02:06 version 1.24, 2001/11/11 12:35:02
Line 81 
Line 81 
  * Creation/destruction functions   * Creation/destruction functions
  */   */
 /* Create a new list */  /* Create a new list */
 extern void             Lst_Init(LIST *);  #define Lst_Init(l)     (l)->firstPtr = (l)->lastPtr = NULL
   /* Static lists are already okay */
   #define Static_Lst_Init(l)
   
 /* Duplicate an existing list */  /* Duplicate an existing list */
 extern Lst              Lst_Clone(Lst, Lst, DuplicateProc);  extern Lst              Lst_Clone(Lst, Lst, DuplicateProc);
 /* Destroy an old one */  /* Destroy an old one */

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24