mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
306 B
C++
16 lines
306 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include<cstddef>
|
|
|
|
std::size_t count_lines(const std::string& filename);
|
|
|
|
void prepare_logdir();
|
|
|
|
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);
|
|
|