blob: 440c74971dbe6062b77a8dd9091e0fd4366f4392 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// Created by jhunk on 10/5/23.
//
#ifndef OMC_DOWNLOAD_H
#define OMC_DOWNLOAD_H
#include <curl/curl.h>
size_t download_writer(void *fp, size_t size, size_t nmemb, void *stream);
long download(char *url, const char *filename, char **errmsg);
#endif //OMC_DOWNLOAD_H
|