|
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: 354 (0x162) Types: TextFile Names: »llist.h«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦cfd40dc56⟧ »EurOpenD3/news/nntp/nntp.1.5.8.tar.Z« └─⟦2ec98eca6⟧ └─⟦this⟧ »xmit/llist.h« └─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦5cced586a⟧ »EurOpenD3/news/nntp/nntp.1.5.7.tar.Z« └─⟦7340f105e⟧ └─⟦this⟧ »./xmit/llist.h«
/* ** Stuff for fiddlin' linked lists ** Erik E. Fair <fair@ucbarpa.berkeley.edu> */ struct llist { struct llist *l_next; caddr_t l_item; int l_len; }; typedef struct llist ll_t; extern void l_free(); extern ll_t *l_alloc(); #ifndef NULL #define NULL 0 #endif #define L_LOOP(p,head) \ for(p = &head; p->l_item != (caddr_t)NULL; p = p->l_next)