|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 192 (0xc0) Types: TextFile Names: »llist.h«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦373604645⟧ »EurOpenD3/news/bnews.2.11/src.tar.Z« └─⟦3beb569ac⟧ └─⟦this⟧ »src/llist.h«
#include <sys/types.h> struct llist { struct llist *l_next; caddr_t l_item; unsigned l_len; }; extern void l_free(); extern struct llist *l_alloc(); #ifndef NULL #define NULL 0 #endif