mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
16 lines
214 B
Plaintext
16 lines
214 B
Plaintext
|
netcdf test_vlen1 {
|
||
|
types:
|
||
|
compound x_base_t {
|
||
|
int vlen_t ;
|
||
|
}; // x_base_t
|
||
|
x_base_t(*) x_t ;
|
||
|
variables:
|
||
|
x_t x ;
|
||
|
|
||
|
// global attributes:
|
||
|
:_DAP4_Little_Endian = 1UB ;
|
||
|
data:
|
||
|
|
||
|
x = {{1}, {3}, {5}, {7}} ;
|
||
|
}
|