STASIS
A pipeline delivery generator
Loading...
Searching...
No Matches
download.h
Go to the documentation of this file.
1
2#ifndef STASIS_DOWNLOAD_H
3#define STASIS_DOWNLOAD_H
4
5#include <stdlib.h>
6#include <string.h>
7#include <curl/curl.h>
8
9size_t download_writer(void *fp, size_t size, size_t nmemb, void *stream);
10long download(char *url, const char *filename, char **errmsg);
11
12#endif //STASIS_DOWNLOAD_H