2023-11-25 03:16:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
2024-06-17 22:09:30 +00:00
|
|
|
#include <string>
|
2023-11-25 03:16:13 +00:00
|
|
|
|
|
|
|
void run_simple_command(const char *const command[], const char *error);
|
|
|
|
|
2024-06-17 22:09:30 +00:00
|
|
|
void chop_last_component(std::string &str);
|
|
|
|
std::string safe_realpath(const std::string &path);
|
|
|
|
std::string get_binary_directory();
|