blob: 5e3d0cf1841891ab9bb0ed04e13ba9aa866657e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -----------------------------------------------------------------------------
*
* (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 */
|