netatalk  4.4.0dev
Free and Open Source Apple Filing Protocol (AFP) Server
Loading...
Searching...
No Matches
etc/atalkd/list.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 1990,1992 Regents of The University of Michigan.
3 * All Rights Reserved. See COPYRIGHT.
4 */
5
6struct list {
7 void *l_data;
8 struct list *l_next, *l_prev;
9};
Definition etc/atalkd/list.h:6
struct list * l_prev
Definition etc/atalkd/list.h:8
struct list * l_next
Definition etc/atalkd/list.h:8
void * l_data
Definition etc/atalkd/list.h:7