mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
12 lines
138 B
Plaintext
12 lines
138 B
Plaintext
|
netcdf test_struct_type {
|
||
|
types:
|
||
|
compound c_t {
|
||
|
int x ;
|
||
|
int y ;
|
||
|
}; // c_t
|
||
|
variables:
|
||
|
c_t s;
|
||
|
data:
|
||
|
s = {1,-2};
|
||
|
}
|