Sign in
code
/
git
/
b3717a89434321bf760c5ca2e11d3ab3e0b90a9c
/
.
/
environment.h
blob: d438b5c8f3a62226a3a1cc32bb9ab9d9def25a4e [
file
] [
log
] [
blame
]
#ifndef
ENVIRONMENT_H
#define
ENVIRONMENT_H
#include
"strvec.h"
/*
* Wrapper of getenv() that returns a strdup value. This value is kept
* in argv to be freed later.
*/
const
char
*
getenv_safe
(
struct
strvec
*
argv
,
const
char
*
name
);
#endif