2015-12-13 20:36:32 +08:00
|
|
|
#pragma once
|
|
|
|
|
2015-12-13 20:59:48 +08:00
|
|
|
#include <string>
|
|
|
|
#include<cstddef>
|
|
|
|
|
|
|
|
std::size_t count_lines(const std::string& filename);
|
|
|
|
|
2015-12-13 20:36:32 +08:00
|
|
|
void prepare_logdir();
|
|
|
|
|
2015-12-13 20:59:48 +08:00
|
|
|
std::string file_contents(const std::string& filename);
|
|
|
|
|
|
|
|
std::size_t count_lines(const std::string& filename);
|
|
|
|
|
|
|
|
std::ifstream::pos_type filesize(const std::string& filename);
|
|
|
|
|