CCF
Loading...
Searching...
No Matches
env.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
5#include <string>
6
7namespace ccf::env
8{
9 std::string expand_envvar(const std::string& str);
10
11 std::string expand_envvars_in_path(const std::string& str);
12}
Definition env.cpp:12
std::string expand_envvars_in_path(const std::string &str)
Definition env.cpp:30
std::string expand_envvar(const std::string &str)
Definition env.cpp:13