2016-04-20 11:57:49 +03:00
|
|
|
#pragma once
|
|
|
|
|
2018-03-09 15:26:33 +02:00
|
|
|
#include <cstddef>
|
2016-04-20 11:57:49 +03:00
|
|
|
#include <string>
|
|
|
|
|
2019-09-15 18:34:29 +03:00
|
|
|
std::size_t count_files(const std::string &folder);
|
|
|
|
|
2016-04-20 11:57:49 +03:00
|
|
|
void prepare_logdir();
|
|
|
|
|
2018-03-09 15:26:33 +02:00
|
|
|
std::string file_contents(const std::string &filename);
|
2016-04-20 11:57:49 +03:00
|
|
|
|
2018-03-09 15:26:33 +02:00
|
|
|
std::size_t count_lines(const std::string &filename);
|
2016-04-20 11:57:49 +03:00
|
|
|
|
2020-02-04 22:23:36 +01:00
|
|
|
void require_message_count(const std::string &filename, const std::size_t messages);
|
|
|
|
|
2018-03-09 15:26:33 +02:00
|
|
|
std::size_t get_filesize(const std::string &filename);
|
2016-04-20 11:57:49 +03:00
|
|
|
|
2018-03-09 15:26:33 +02:00
|
|
|
bool ends_with(std::string const &value, std::string const &ending);
|