ncstdio.c#13 ncstdio_uid(ncstdio* iop, int* idp) #15 if(iop == NULL) return NC_EINVAL; #16 return iop->ops.uid(iop,idp); #20 ncstdio_sync(ncstdio* iop) #22 if(iop == NULL) return NC_EINVAL; #23 return iop->ops.sync(iop); #27 ncstdio_flush(ncstdio* iop) #29 if(iop == NULL) return NC_EINVAL; #30 return iop->ops.flush(iop); #34 ncstdio_free(ncstdio* iop) #36 if(iop == NULL) return NC_NOERR; #37 return iop->ops.free(iop); #41 ncstdio_close(ncstdio* iop) #43 if(iop == NULL) return NC_EINVAL; #44 return iop->ops.close(iop); #48 ncstdio_seek(ncstdio* iop, off_t pos) #50 if(iop == NULL) return NC_EINVAL; #51 return iop->ops.seek(iop,pos); #55 ncstdio_read(ncstdio* iop, void* memory, const size_t size, size_t* actual) #57 if(iop == NULL) return NC_EINVAL; #58 return iop->ops.read(iop,memory,size,actual); #62 ncstdio_write(ncstdio* iop, const void* memory, const size_t size, size_t* actual) #64 if(iop == NULL) return NC_EINVAL; #65 return iop->ops.write(iop,memory,size,actual);
HyperKWIC - Version 7.20DA executed at 11:37 on 27 Oct 2017 | Polyhedron Solutions - INTERNAL USE | COMMERCIAL (Any O/S) SN 4AKIed