Fix build for HP-UX and older Solaris: (un)setenv. Bug 1578
[exim.git] / src / src / setenv.c
CommitLineData
06cf6fdc
JH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5/* Copyright (c) Michael Haardt 2015 */
dfe7d917 6/* Copyright (c) Jeremy Harris 2015 - 2016 */
06cf6fdc
JH
7/* See the file NOTICE for conditions of use and distribution. */
8
9/* This module provides (un)setenv routines for those environments
dfe7d917 10lacking them in libraries. It is #include'd by OS/os.c-foo files. */
06cf6fdc
JH
11
12
dfe7d917 13int
06cf6fdc
JH
14setenv(const char * name, const char * val, int overwrite)
15{
16uschar * s;
17if (Ustrchr(name, '=')) return -1;
18if (overwrite || !getenv(name))
19 putenv(CS string_copy_malloc(string_sprintf("%s=%s", name, val)));
20return 0;
21}
22
dfe7d917 23int
06cf6fdc
JH
24unsetenv(const char *name)
25{
26size_t len;
27const char * end;
28char ** e;
29extern char ** environ;
30
31if (!name)
32 {
33 errno = EINVAL;
34 return -1;
35 }
36
bc3c7bb7
HSHR
37if (!environ)
38 return 0;
39
06cf6fdc
JH
40for (end = name; *end != '=' && *end; ) end++;
41len = end - name;
42
43/* Find name in environment and move remaining variables down.
44Do not early-out in case there are duplicate names. */
45
46for (e = environ; *e; e++)
47 if (strncmp(*e, name, len) == 0 && (*e)[len] == '=')
48 {
49 char ** sp = e;
50 do *sp = sp[1]; while (*++sp);
51 }
52
53return 0;
54}
55
56/* vi: aw ai sw=2
57*/
58/* End of setenv.c */