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