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.
10 lines
347 B
10 lines
347 B
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <ostream>
|
|
#include <string>
|
|
|
|
void precise_nano_sleep(long sleep_ns);
|
|
bool readBZ2File(const std::string_view file, std::ostream &stream);
|
|
void enableHttpLogging(bool enable);
|
|
bool httpMultiPartDownload(const std::string &url, const std::string &target_file, int parts, std::atomic<bool> *abort = nullptr);
|
|
|