Revision 4d0b43aa765a0056c88381eea862364c95e358ca authored by Johannes Schindelin on 17 March 2022, 09:57:52 UTC, committed by Johannes Schindelin on 23 March 2022, 23:31:36 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 93fbff0
Raw File
environment.h
#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
back to top