NetCDF  4.3.2
datt.c
Go to the documentation of this file.
00001 
00009 #include "ncdispatch.h"
00010  /* All these functions are part of the above defgroup... */
00057 
00058  /* All these functions are part of this named group... */
00063 
00106 int
00107 nc_rename_att(int ncid, int varid, const char *name, const char *newname)
00108 {
00109    NC* ncp;
00110    int stat = NC_check_id(ncid, &ncp);
00111    if(stat != NC_NOERR) return stat;
00112    return ncp->dispatch->rename_att(ncid, varid, name, newname);
00113 }
00114 
00156 int
00157 nc_del_att(int ncid, int varid, const char *name)
00158 {
00159    NC* ncp;
00160    int stat = NC_check_id(ncid, &ncp);
00161    if(stat != NC_NOERR) return stat;
00162    return ncp->dispatch->del_att(ncid, varid, name);
00163 }  /* End of named group ...*/
00165  /* End of defgroup. */
 All Data Structures Files Functions Variables Typedefs Defines