mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
18 lines
216 B
Plaintext
18 lines
216 B
Plaintext
|
netcdf ref_tst_unlim2 {
|
||
|
dimensions:
|
||
|
Dr = UNLIMITED ; // (2 currently)
|
||
|
D1 = 1 ;
|
||
|
D2 = 2 ;
|
||
|
D3 = 3 ;
|
||
|
U = UNLIMITED ; // (4 currently)
|
||
|
variables:
|
||
|
char cuu(Dr, D2, U) ;
|
||
|
data:
|
||
|
|
||
|
cuu =
|
||
|
"adef",
|
||
|
"",
|
||
|
"xy",
|
||
|
"" ;
|
||
|
}
|