|
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 c
Length: 773 (0x305) Types: TextFile Names: »ch_bind.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/h/ch_bind.h«
/* ch_bind.h: channel binding types */ /* * @(#) $Header: /cs/research/pp/hubris/pp-beta/h/RCS/ch_bind.h,v 5.0 90/09/20 16:49:47 pp Exp Locker: pp $ * * $Log: ch_bind.h,v $ * Revision 5.0 90/09/20 16:49:47 pp * rcsforce : 5.0 public release * * */ #ifndef _H_CH_BIND #define _H_CH_BIND /* SEK - someone must document this !! */ typedef struct list { struct list *li_next; char *li_name; } LIST; typedef struct { int m_int; LIST *m_list; } MAT; typedef struct types { struct types *ty_next; int ty_number; char *ty_name; } TYPES; typedef struct flat { struct flat *flt_next; char *flt_name; char *flt_type; } FLAT; typedef struct fillist { struct fillist *fil_next; char *fil_name; char *fil_from; char *fil_to; } FILTER; #endif