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