home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource2 / sclib_1 / 1_7 / v7n7047a.txt < prev    next >
Encoding:
Text File  |  1995-11-01  |  272 b   |  18 lines

  1.  
  2.  
  3. ---------------------listing 2-----------------------------
  4. /*
  5.  * setenv.h
  6.  */
  7.  
  8. #ifndef SETENV_H
  9. #define         SETENV_H
  10.  
  11. #define         MAX_ENV         256
  12.  
  13. extern  char    **environ, *setenv();
  14. extern  int     unsetenv(), _envc;
  15.  
  16. #endif  !SETENV_H
  17.  
  18.