2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #include <afsconfig.h>
11 #include <afs/param.h>
18 #include <afs/errmap_nt.h>
19 #include <afs/afsutil.h>
20 #include <WINNT/afssw.h>
30 AddToList(struct filestr
**ah
, char *aname
)
33 tf
= (struct filestr
*)malloc(sizeof(struct filestr
));
36 tf
->name
= (char *)malloc(strlen(aname
) + 1);
37 strcpy(tf
->name
, aname
);
42 ZapList(struct filestr
**ah
)
44 struct filestr
*tf
, *nf
;
45 for (tf
= *ah
; tf
; tf
= nf
) {
46 nf
= tf
->next
; /* save before freeing */