PostgreSQL Source Code  git master
struct.h
Go to the documentation of this file.
1 struct mytype
2 {
3  int id;
4  char t[64];
5  double d1; /* dec_t */
6  double d2;
7  char c[30];
8 };
9 typedef struct mytype MYTYPE;
10 
11 struct mynulltype
12 {
13  int id;
14  int t;
15  int d1;
16  int d2;
17  int c;
18 };
19 typedef struct mynulltype MYNULLTYPE;
char * c
char t[64]