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

操作系统开发

开发平台:

C/C++

  1. GETCWD(3)                 Minix Programmer's Manual                  GETCWD(3)
  2. NAME
  3.      getcwd - get current working directory pathname
  4. SYNOPSIS
  5.      #include <unistd.h>
  6.      char *getcwd(char *pathname, size_t len)
  7. DESCRIPTION
  8.      Getcwd copies the absolute pathname of the current working  directory  to
  9.      pathname  and  returns  a pointer to the result.  Pathname is a character
  10.      array of length len.
  11. DIAGNOSTICS
  12.      Getcwd returns a null pointer and sets errno if  an  error  occurs.   The
  13.      error  will  reflect the system call errors that may occur if the path to
  14.      the current directory is searched upwards to  the  root  directory.   The
  15.      error ERANGE is returned if the result does not fit within len bytes.
  16. 5BSD                              May 12, 1986                               1