10 lines
173 B
C++
10 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);
|