Cloned library NetCDF-C-4.9.2 with extra build files for internal package management.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
netcdf ref_tst_nul3 {
|
|
dimensions:
|
|
n = 8 ;
|
|
variables:
|
|
char cdata(n) ;
|
|
char cdata2(n) ;
|
|
|
|
// global attributes:
|
|
:global = "x\000y" ;
|
|
:byte_att = 0b, 1b, 2b, 127b, -128b, -127b, -2b, -1b ;
|
|
data:
|
|
|
|
cdata = "abc\000def" ;
|
|
|
|
cdata2 = "\000\001\002\177\200\201\376\377" ;
|
|
}
|
|
|