GETENV.3
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:0k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ." @(#)getenv.3 6.1 (Berkeley) 5/15/85
  2. ."
  3. .TH GETENV 3 "May 15, 1985"
  4. .AT 3
  5. .SH NAME
  6. getenv - value for environment name
  7. .SH SYNOPSIS
  8. .nf
  9. .ft B
  10. #include <stdlib.h>
  11. char *getenv(const char *fInamefP)
  12. .ft R
  13. .fi
  14. .SH DESCRIPTION
  15. .B Getenv
  16. .a
  17. searches the environment list
  18. (see
  19. .BR environ (7))
  20. for a string of the form
  21. .IB name = value
  22. and returns a pointer to the string
  23. .I value
  24. if such a string is present, otherwise 
  25. .B getenv
  26. returns the null pointer.
  27. .SH SEE ALSO
  28. .BR environ (7),
  29. .BR execve (2).