summaryrefslogtreecommitdiff
path: root/rts/GetEnv.h
blob: a6f2b54dae4aee09d3b0ff92c97d1c3cdafb1a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -----------------------------------------------------------------------------
 *
 * (c) The GHC Team 2011
 *
 * OS-independent interface to the process environment variables
 *
 * ---------------------------------------------------------------------------*/

#pragma once

#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"