source: buchla-68k/orig/GP/GPLISTS.H

Last change on this file was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 594 bytes
Line 
1/*
2 =============================================================================
3 gplists.h -- general purpose list function header
4 Version 2 -- 1988-07-15 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
8struct list_e { /* execution list entry */
9
10 int (*fn)();
11 char *arg;
12};
13
14struct list_1 { /* singly linked list entry */
15
16 struct list1 *link1;
17 int (*fn)();
18 char *arg;
19};
20
21struct list_2 { /* doubly linked list entry */
22
23 struct list2 *link1;
24 struct list2 *link2;
25 int (*fn)();
26 char *arg;
27};
28
Note: See TracBrowser for help on using the repository browser.