Forked from
Glasgow Haskell Compiler / GHC
25654 commits behind, 518 commits ahead of the upstream repository.
-
Simon Marlow authored
This reverts commit 39b5c1cb.
Simon Marlow authoredThis reverts commit 39b5c1cb.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
GetEnv.h 615 B
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team 2011
*
* OS-independent interface to the process environment variables
*
* ---------------------------------------------------------------------------*/
#ifndef GETENV_H
#define GETENV_H
#include "BeginPrivate.h"
/* Get the process environment vector (same style interface as argc/argv)
*/
void getProgEnvv (int *out_envc, char **out_envv[]);
void freeProgEnvv (int envc, char *envv[]);
/* calls to getProgEnvv must have a corresponding freeProgEnvv */
#include "EndPrivate.h"
#endif /* GETENV_H */