DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦afac1fd8a⟧ TextFile

    Length: 192 (0xc0)
    Types: TextFile
    Names: »llist.h«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦373604645⟧ »EurOpenD3/news/bnews.2.11/src.tar.Z« 
        └─⟦3beb569ac⟧ 
            └─⟦this⟧ »src/llist.h« 

TextFile

#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