home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / groff-1.09-src.lha / src / amiga / groff-1.09 / libgroff / putenv.c < prev    next >
C/C++ Source or Header  |  1992-09-06  |  2KB  |  97 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. /* Hacked slightly by jjc@jclark.com for groff. */
  20.  
  21. #include <string.h>
  22.  
  23. #ifdef __STDC__
  24. #include <stddef.h>
  25. typedef void *PTR;
  26. typedef size_t SIZE_T;
  27. #else /* not __STDC__ */
  28. typedef char *PTR;
  29. typedef int SIZE_T;
  30. #endif /* not __STDC__ */
  31.  
  32. #ifdef HAVE_STDLIB_H
  33. #include <stdlib.h>
  34. #else /* not HAVE_STDLIB_H */
  35. PTR malloc();
  36. #endif /* not HAVE_STDLIB_H */
  37.  
  38. #ifndef NULL
  39. #define NULL 0
  40. #endif
  41.  
  42. extern char **environ;
  43.  
  44. /* Put STRING, which is of the form "NAME=VALUE", in the environment.  */
  45.  
  46. int putenv(string)
  47.      char *string;
  48. {
  49.   char *name_end = strchr(string, '=');
  50.   SIZE_T size;
  51.   char **ep;
  52.  
  53.   if (name_end == NULL)
  54.     {
  55.       /* Remove the variable from the environment.  */
  56.       size = strlen(string);
  57.       for (ep = environ; *ep != NULL; ++ep)
  58.     if (!strncmp(*ep, string, size) && (*ep)[size] == '=')
  59.       {
  60.         while (ep[1] != NULL)
  61.           {
  62.         ep[0] = ep[1];
  63.         ++ep;
  64.           }
  65.         *ep = NULL;
  66.         return 0;
  67.       }
  68.     }
  69.  
  70.   size = 0;
  71.   for (ep = environ; *ep != NULL; ++ep)
  72.     if (!strncmp(*ep, string, name_end - string)
  73.     && (*ep)[name_end - string] == '=')
  74.       break;
  75.     else
  76.       ++size;
  77.  
  78.   if (*ep == NULL)
  79.     {
  80.       static char **last_environ = NULL;
  81.       char **new_environ = (char **) malloc((size + 2) * sizeof(char *));
  82.       if (new_environ == NULL)
  83.     return -1;
  84.       (void) memcpy((PTR) new_environ, (PTR) environ, size * sizeof(char *));
  85.       new_environ[size] = (char *) string;
  86.       new_environ[size + 1] = NULL;
  87.       if (last_environ != NULL)
  88.     free((PTR) last_environ);
  89.       last_environ = new_environ;
  90.       environ = new_environ;
  91.     }
  92.   else
  93.     *ep = (char *) string;
  94.  
  95.   return 0;
  96. }
  97.