|
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 - downloadIndex: T l
Length: 772 (0x304) Types: TextFile Names: »list_bpt.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/h/list_bpt.h«
/* list_bpt.h: A definition of a List structure for Body Part Types */ /* * @(#) $Header: /cs/research/pp/hubris/pp-beta/h/RCS/list_bpt.h,v 5.0 90/09/20 16:50:22 pp Exp Locker: pp $ * * $Log: list_bpt.h,v $ * Revision 5.0 90/09/20 16:50:22 pp * rcsforce : 5.0 public release * * */ #ifndef _H_LIST_BPT #define _H_LIST_BPT typedef struct list_bpt { char *li_name; struct list_bpt *li_next; } LIST_BPT; #define NULLIST_BPT ((LIST_BPT *)0) extern LIST_BPT *list_bpt_dup(); extern LIST_BPT *list_bpt_find(); extern LIST_BPT *list_bpt_malloc(); extern LIST_BPT *list_bpt_new(); extern void list_bpt_add (); extern void list_bpt_free (); #endif