|
|
1.1 ! root 1: /* ! 2: ********************************************************************** ! 3: * HISTORY ! 4: * 06-Mar-80 Rick Rashid (rfr) at Carnegie-Mellon University ! 5: * Created (V1.05). ! 6: * ! 7: ********************************************************************** ! 8: */ ! 9: ! 10: /* ! 11: * General purpose structure to define circular queues. ! 12: * Both the queue header and the queue elements have this ! 13: * structure. ! 14: */ ! 15: ! 16: struct Queue ! 17: { ! 18: struct Queue * F; ! 19: struct Queue * B; ! 20: }; ! 21: ! 22: extern struct Queue *dequeue();
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.