CVector 4.3.0
A C++ style vector library in strict ANSI C (C89)
Loading...
Searching...
No Matches
test_types.h
Go to the documentation of this file.
1#ifndef TEST_TYPES_H
2#define TEST_TYPES_H
3
5typedef struct t_struct
6{
7 double d;
8 int i;
9 char word[30];
10} t_struct;
11
13typedef struct f_struct
14{
15 double d;
16 int i;
17 char* word;
18} f_struct;
19
20
21
22
23
24
25#endif
Structure used to test generic vector.
Definition test_types.h:14
char * word
Definition test_types.h:17
double d
Definition test_types.h:15
Structure used to test generic vector.
Definition test_types.h:6
double d
Definition test_types.h:7
char word[30]
Definition test_types.h:9