mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-12-28 18:16:43 +00:00
11 lines
173 B
C++
11 lines
173 B
C++
/**
|
|
* @file tests/utils.h
|
|
* @brief Declarations for utility functions.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
int
|
|
setEnv(const std::string &name, const std::string &value);
|