cpp-terminal 1.0.0
Small C++ library for writing multiplatform terminal applications
Loading...
Searching...
No Matches
env.hpp
Go to the documentation of this file.
1/*
2* cpp-terminal
3* C++ library for writing multi-platform terminal applications.
4*
5* SPDX-FileCopyrightText: 2019-2024 cpp-terminal
6*
7* SPDX-License-Identifier: MIT
8*/
9
10// This header should be used only in files contained inside platforms folder !!!
11#pragma once
12
13#include <string>
14#include <utility>
15
16namespace Term
17{
18
19namespace Private
20{
21
29std::pair<bool, std::string> getenv(const std::string& env);
30
31} // namespace Private
32
33} // namespace Term
std::pair< bool, std::string > getenv(const std::string &env)
Value of an environment variables.
Definition env.cpp:14
Definition args.cpp:13