Initial Import
[glAntsMech.git] / glants_mech / win32 / glAntsV05 / list.h
blob0158470f8ea3aa77d503c73360c06b385dfcd0db
1 //
2 // list.h
3 #ifndef _LIST_H_
4 #define _LIST_H_
6 typedef struct tagNode {
7 int data;
9 struct tagNode *next;
10 } Node;
12 typedef struct tagList {
13 Node *head;
14 } List;
17 void LinkTest(void);
20 #endif