mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
13 lines
182 B
Plaintext
13 lines
182 B
Plaintext
|
netcdf ref_nulls {
|
||
|
variables:
|
||
|
int test;
|
||
|
test:nul_sng = '\0';
|
||
|
test:empty_sng = "";
|
||
|
test:space_sng = " ";
|
||
|
test:zero_sng = "0";
|
||
|
test:nul0 = '\0' ;
|
||
|
data:
|
||
|
|
||
|
test = 1;
|
||
|
}
|