blob: e592585133984002e8a7f5ce11d2b9ff93c97b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "netcdf.h"
int main(void)
{
int ret, ncid;
if ((ret = nc_create("foo.nc", NC_CLOBBER, &ncid)))
return ret;
if ((ret = nc_close(ncid)))
return ret;
return 0;
}
|