home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / shellutils-1.9.4-src.lha / src / amiga / shellutils-1.9.4 / lib / putenv.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-03  |  3.0 KB  |  123 lines

  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. #ifdef HAVE_CONFIG_H
  20. #if defined (CONFIG_BROKETS)
  21. /* We use <config.h> instead of "config.h" so that a compilation
  22.    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
  23.    (which it would do because it found this file in $srcdir).  */
  24. #include <config.h>
  25. #else
  26. #include "config.h"
  27. #endif
  28. #endif
  29.  
  30. #include <sys/types.h>
  31. #include <errno.h>
  32.  
  33. /* This needs to come after some library #include
  34.    to get __GNU_LIBRARY__ defined.  */
  35. #ifdef    __GNU_LIBRARY__
  36. /* Don't include stdlib.h for non-GNU C libraries because some of them
  37.    contain conflicting prototypes for getopt.  */
  38. #include <stdlib.h>
  39. #else
  40. char *malloc ();
  41. #endif    /* GNU C library.  */
  42.  
  43. #ifndef STDC_HEADERS
  44. extern int errno;
  45. #endif
  46.  
  47. #if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
  48. #include <string.h>
  49. #ifndef index
  50. #define index strchr
  51. #endif
  52. #ifndef bcopy
  53. #define bcopy(s, d, n) memcpy((d), (s), (n))
  54. #endif
  55. #else
  56. #include <strings.h>
  57. #endif
  58.  
  59. #ifdef HAVE_UNISTD_H
  60. #include <unistd.h>
  61. #endif
  62.  
  63. #ifndef NULL
  64. #define NULL 0
  65. #endif
  66.  
  67. extern char **environ;
  68.  
  69. /* Put STRING, which is of the form "NAME=VALUE", in the environment.  */
  70. int
  71. putenv (string)
  72.      const char *string;
  73. {
  74.   char *name_end = index (string, '=');
  75.   register size_t size;
  76.   register char **ep;
  77.  
  78.   if (name_end == NULL)
  79.     {
  80.       /* Remove the variable from the environment.  */
  81.       size = strlen (string);
  82.       for (ep = environ; *ep != NULL; ++ep)
  83.     if (!strncmp (*ep, string, size) && (*ep)[size] == '=')
  84.       {
  85.         while (ep[1] != NULL)
  86.           {
  87.         ep[0] = ep[1];
  88.         ++ep;
  89.           }
  90.         *ep = NULL;
  91.         return 0;
  92.       }
  93.     }
  94.  
  95.   size = 0;
  96.   for (ep = environ; *ep != NULL; ++ep)
  97.     if (!strncmp (*ep, string, name_end - string) &&
  98.     (*ep)[name_end - string] == '=')
  99.       break;
  100.     else
  101.       ++size;
  102.  
  103.   if (*ep == NULL)
  104.     {
  105.       static char **last_environ = NULL;
  106.       char **new_environ = (char **) malloc ((size + 2) * sizeof (char *));
  107.       if (new_environ == NULL)
  108.     return -1;
  109.       (void) bcopy ((char *) environ, (char *) new_environ,
  110.             size * sizeof (char *));
  111.       new_environ[size] = (char *) string;
  112.       new_environ[size + 1] = NULL;
  113.       if (last_environ != NULL)
  114.     free ((char *) last_environ);
  115.       last_environ = new_environ;
  116.       environ = new_environ;
  117.     }
  118.   else
  119.     *ep = (char *) string;
  120.  
  121.   return 0;
  122. }
  123.