projects
/
cgds.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Some fixes + improvements (Vector) + code reformatting
[cgds.git]
/
test
/
helpers.h
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
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