mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
16 lines
439 B
C
16 lines
439 B
C
|
/* Copyright 2018-2018 University Corporation for Atmospheric
|
||
|
Research/Unidata. */
|
||
|
/**
|
||
|
* Header file for dhttp.c
|
||
|
* @author Dennis Heimbigner
|
||
|
*/
|
||
|
|
||
|
#ifndef NCHTTP_H
|
||
|
#define NCHTTP_H
|
||
|
|
||
|
extern int nc_http_open(const char* objecturl, void** curlp, fileoffset_t* filelenp);
|
||
|
extern int nc_http_read(void* curl, const char* url, fileoffset_t start, fileoffset_t count, NCbytes* buf);
|
||
|
extern int nc_http_close(void* curl);
|
||
|
|
||
|
#endif /*NCHTTP_H*/
|