projects
/
cgds.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
bc0a6042c2262ca15a7d761b497b8dae537c82b7
[cgds.git]
/
test
/
helpers.h
1
#ifndef HELPERS_H
2
#define HELPERS_H
3
4
// types (POD) to be used as items inside our data structures
5
typedef
struct
{
6
int
a
;
7
double
b
;
8
}
StructTest1
;
9
10
typedef
struct
{
11
float
a
;
12
StructTest1
*
b
;
13
}
StructTest2
;
14
15
#endif