The Wayback Machine - https://web.archive.org/web/20210817215722/https://github.com/git/git/blob/master/environment.h
Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
#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