home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT148.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-18  |  449 b   |  16 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat148.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <env.h>
  7.  
  8. void main()
  9. {
  10.    char *path;
  11.  
  12.    if(setenv("LIB","C:\WATCOM\LIB386\DOS", 0) == 0)
  13.       if((path = getenv("LIB")) != NULL)
  14.           printf("LIB = %s\n", path);
  15. }
  16.