|
|
1.1 ! root 1: /* sequence.h - */ ! 2: ! 3: /* ! 4: * $Header: /f/osi/h/quipu/RCS/sequence.h,v 7.0 89/11/23 21:56:44 mrose Rel $ ! 5: * ! 6: * ! 7: * $Log: sequence.h,v $ ! 8: * Revision 7.0 89/11/23 21:56:44 mrose ! 9: * Release 6.0 ! 10: * ! 11: */ ! 12: ! 13: /* ! 14: * NOTICE ! 15: * ! 16: * Acquisition, use, and distribution of this module and related ! 17: * materials are subject to the restrictions of a license agreement. ! 18: * Consult the Preface in the User's Manual for the full terms of ! 19: * this agreement. ! 20: * ! 21: */ ! 22: ! 23: ! 24: struct dua_sequence { ! 25: char * ds_name; ! 26: struct dua_seq_entry *ds_data; ! 27: struct dua_seq_entry *ds_last; ! 28: struct dua_sequence *ds_next; ! 29: }; ! 30: ! 31: #define ds_alloc() (struct dua_sequence *) smalloc(sizeof (struct dua_sequence)) ! 32: #define NULL_DS ((struct dua_sequence *)0) ! 33: DN sequence_dn (); ! 34: ! 35: struct dua_seq_entry { ! 36: DN de_name; ! 37: struct dua_seq_entry *de_next; ! 38: }; ! 39: ! 40: #define de_alloc() (struct dua_seq_entry *) smalloc(sizeof (struct dua_seq_entry)) ! 41: #define NULL_DE ((struct dua_seq_entry *)0)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.