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