mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
19 lines
226 B
Plaintext
19 lines
226 B
Plaintext
|
netcdf ref_tst_nul4 {
|
||
|
dimensions:
|
||
|
n = 8 ;
|
||
|
variables:
|
||
|
// char cdata(n) ;
|
||
|
string sdata ;
|
||
|
// char c ;
|
||
|
|
||
|
// global attributes:
|
||
|
// string :global = "x\000y";
|
||
|
data:
|
||
|
|
||
|
// cdata = "abc\000def" ;
|
||
|
|
||
|
sdata = "123\0004" ;
|
||
|
|
||
|
// c = "" ;
|
||
|
}
|