|
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 s
Length: 959 (0x3bf) Types: TextFile Names: »sequence.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« └─⟦de7628f85⟧ └─⟦this⟧ »isode-6.0/others/quipu/uips/widget2/sequence.h«
/* This file contains code to implement the list storage facilities * in the modified widget program. */ /* This file was written by Damanjit Mahl @ Brunel University * on 31st October 1989 as part of the modifications made to * the Quipu X.500 widget interface written by Paul Sharpe * at GEC Research, Hirst Research Centre. */ /* * NOTICE * * Acquisition, use, and distribution of this module and related * materials are subject to the restrictions of a license agreement. * Consult the Preface in the User's Manual for the full terms of * this agreement. * */ #ifndef SEQ #define SEQ #include <strings.h> #ifdef QUIPU_MALLOC #else extern char * malloc (); extern char * smalloc (); #endif typedef struct d_seq{ char *dname; unsigned strlen; int seq_num; struct d_seq *next; } d_seq, *D_seq; #define NULLDS ((D_seq) 0) char * get_from_seq (); #endif