]> arthur.barton.de Git - netatalk.git/blob - etc/atalkd/zip.h
Initial revision
[netatalk.git] / etc / atalkd / zip.h
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved. See COPYRIGHT.
4  */
5
6 #ifndef ATALKD_ZIP_H
7 #define ATALKD_ZIP_H 1
8
9 #include <sys/cdefs.h>
10
11 struct ziptab {
12     struct ziptab       *zt_next,
13                         *zt_prev;
14     u_char              zt_len;
15     char                *zt_name;
16     u_char              *zt_bcast;
17     struct list         *zt_rt;
18 };
19
20 extern struct ziptab    *ziptab, *ziplast;
21 struct ziptab   *newzt __P((const int, const char *));
22
23 #endif /* atalkd/zip.h */