mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00

git-subtree-dir: thirdparty/spdlog git-subtree-split: 32177aa77a0a20453d3e7455cac42406fc49b6ca
16 lines
No EOL
368 B
C++
16 lines
No EOL
368 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::size_t get_filesize(const std::string& filename);
|
|
|
|
bool ends_with(std::string const & value, std::string const & ending); |