GETENV.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. GETENV(3)                 Minix Programmer's Manual                  GETENV(3)
  2. NAME
  3.      getenv - value for environment name
  4. SYNOPSIS
  5.      #include <stdlib.h>
  6.      char *getenv(const char *name)
  7. DESCRIPTION
  8.      Getenv searches the environment list (see environ(7)) for a string of the
  9.      form  name=value  and  returns  a  pointer  to the string value if such a
  10.      string is present, otherwise getenv returns the null pointer.
  11. SEE ALSO
  12.      environ(7), execve(2).
  13.                                 May 15, 1985                                 1