Awoo-Installer/include/util/curl.hpp
2019-11-29 03:23:11 -05:00

7 lines
No EOL
235 B
C++
Executable file

#pragma once
#include <string>
namespace inst::curl {
bool downloadFile(const std::string ourUrl, const char *pagefilename);
std::string downloadToBuffer (const std::string ourUrl, int firstRange = -1, int secondRange = -1);
}