summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2025-04-03 07:56:04 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2025-04-03 08:17:16 +0200
commitcd6c3ea1c3ca853fc38da4fa5fd62545c31aa92d (patch)
tree57d7956ab19a756cfcf8fdd65aa8fb6e511133c5 /src/util.h
parent494401c0e0d29018f0ac53e91a3481d12e427ea6 (diff)
Refactor getenv usage.stuffdevelop
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 6e1bc7b..38d89f2 100644
--- a/src/util.h
+++ b/src/util.h
@@ -23,7 +23,11 @@ void append(T& a, const T& b)
std::string esc(const std::string& in);
-std::vector<std::string> get_paths(const std::string& path_env = std::getenv("PATH"));
+//! Get system paths (ie. env var PATH).
+//! If path_env is provided, this search string will be used, other the PATH
+//! env variable is used.
+//! \returns a vector of the individual toknized paths.
+std::vector<std::string> get_paths(const std::string& path_env = {});
std::string locate(const std::string& app,
const std::vector<std::string>& paths,
@@ -31,3 +35,7 @@ std::string locate(const std::string& app,
//! Splits string into tokens adhering to quotations " and '
std::vector<std::string> argsplit(const std::string& str);
+
+//! Calls the system getenv and sets the string if the env name it exists.
+//! \returns true if the env name existed, false otherwise.
+bool get_env(std::string_view name, std::string& value);