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