repo.or.cz
/
glAntsMech.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial Import
[glAntsMech.git]
/
glants_mech
/
win32
/
glAntsV05
/
list.h
blob
0158470f8ea3aa77d503c73360c06b385dfcd0db
1
//
2
// list.h
3
#ifndef _LIST_H_
4
#define _LIST_H_
5
6
typedef
struct
tagNode
{
7
int
data
;
8
9
struct
tagNode
*
next
;
10
}
Node
;
11
12
typedef
struct
tagList
{
13
Node
*
head
;
14
}
List
;
15
16
17
void
LinkTest
(
void
);
18
19
20
#endif