You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
4 years ago
|
#pragma once
|
||
|
|
||
|
#include <atomic>
|
||
|
#include <ostream>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
void precise_nano_sleep(long sleep_ns);
|
||
|
bool readBZ2File(const std::string_view file, std::ostream &stream);
|
||
|
bool httpMultiPartDownload(const std::string &url, const std::string &target_file, int parts, std::atomic<bool> *abort = nullptr);
|