mirror of
https://github.com/open-goal/jak-project
synced 2026-06-20 16:21:35 -04:00
849d7924c2
Hopefully resolves Linux build dependency errors
16 lines
367 B
C++
16 lines
367 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <string>
|
|
|
|
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); |