blob: 82fd619ec9d13e173184d22ebde2ea8f7f8d24d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#include "cr_environment.h"
#include "cr_string.h"
#include "cr_mem.h"
#include <stdlib.h>
#include <stdio.h>
void crSetenv( const char *var, const char *value )
{
#if defined(LINUX) || defined(FREEBSD) || defined(DARWIN)
setenv( var, value, 1 /* replace */ );
#else
unsigned long len;
char *buf;
len = crStrlen(var) + 1 + crStrlen(value) + 1;
buf = (char *) crAlloc( len );
sprintf( buf, "%s=%s", var, value );
putenv( buf );
/* don't free the buf, the string is *part* of the environment,
* and can't be reclaimed */
#endif
}
const char *crGetenv( const char *var )
{
return getenv( var );
}
|