(index, bcopy): Don't redefine.
[gnulib.git] / lib / putenv.c
1 /* Copyright (C) 1991 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
18
19 #include <sys/types.h>
20 #include <errno.h>
21 #ifdef STDC_HEADERS
22 #include <stdlib.h>
23 #else
24 extern int errno;
25 #endif
26
27 #if defined(STDC_HEADERS) || defined(USG)
28 #include <string.h>
29 #ifndef index
30 #define index strchr
31 #endif
32 #ifndef bcopy
33 #define bcopy(s, d, n) memcpy((d), (s), (n))
34 #endif
35 #else /* not (STDC_HEADERS or USG) */
36 #include <strings.h>
37 #endif /* STDC_HEADERS or USG */
38
39 #ifdef HAVE_UNISTD_H
40 #include <unistd.h>
41 #endif
42
43 #ifndef NULL
44 #define NULL 0
45 #endif
46
47 #if !__STDC__
48 #define const
49 #endif
50
51 extern char **environ;
52
53 /* Put STRING, which is of the form "NAME=VALUE", in the environment.  */
54 int
55 putenv (string)
56      const char *string;
57 {
58   char *name_end = index (string, '=');
59   register size_t size;
60   register char **ep;
61
62   if (name_end == NULL)
63     {
64       /* Remove the variable from the environment.  */
65       size = strlen (string);
66       for (ep = environ; *ep != NULL; ++ep)
67         if (!strncmp (*ep, string, size) && (*ep)[size] == '=')
68           {
69             while (ep[1] != NULL)
70               {
71                 ep[0] = ep[1];
72                 ++ep;
73               }
74             *ep = NULL;
75             return 0;
76           }
77     }
78
79   size = 0;
80   for (ep = environ; *ep != NULL; ++ep)
81     if (!strncmp (*ep, string, name_end - string) &&
82         (*ep)[name_end - string] == '=')
83       break;
84     else
85       ++size;
86
87   if (*ep == NULL)
88     {
89       static char **last_environ = NULL;
90       char **new_environ = (char **) malloc ((size + 2) * sizeof (char *));
91       if (new_environ == NULL)
92         return -1;
93       (void) bcopy ((char *) environ, (char *) new_environ, size * sizeof (char *));
94       new_environ[size] = (char *) string;
95       new_environ[size + 1] = NULL;
96       if (last_environ != NULL)
97         free ((char *) last_environ);
98       last_environ = new_environ;
99       environ = new_environ;
100     }
101   else
102     *ep = (char *) string;
103
104   return 0;
105 }