mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
15 lines
211 B
Plaintext
15 lines
211 B
Plaintext
|
netcdf ref_nulls {
|
||
|
dimensions:
|
||
|
_scalar_ = 1 ;
|
||
|
variables:
|
||
|
int test(_scalar_) ;
|
||
|
test:nul_sng = 0 ;
|
||
|
test:empty_sng = "" ;
|
||
|
test:space_sng = " " ;
|
||
|
test:zero_sng = 0 ;
|
||
|
test:nul0 = 0 ;
|
||
|
data:
|
||
|
|
||
|
test = 1 ;
|
||
|
}
|