|
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: 364 (0x16c) Types: TextFile Names: »insque.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec8/untamo/insque.c«
/* Queue insertion and deletion routines for non-Vaxen */ struct qelem { struct qelem *q_forw , *q_back; #ifdef LINT char q_data[]; #endif LINT }; #ifndef VAX insque( elem , pred ) register struct qelem *elem , *pred; { elem->q_forw = pred->q_forw; pred->q_forw = elem; elem->q_forw->q_back = elem; elem->q_back = pred; } #endif VAX