home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / CLIBS / PROCONT / GETENV.C < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-22  |  213 b   |  13 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <time.h>
  5. #include <libp.h>
  6.  
  7. /* This one is OS dependent */
  8.  
  9. char *getenv(const char *varname)
  10. {
  11.     void *t = _ll_getenv();
  12.     return 0;
  13. }