xref: /titanic_51/usr/src/lib/libast/common/man/getcwd.3 (revision 6bbe05905a1c10a2703f95fb4912eb14b87f6670)
.fp 5 CW .. .nr ;G \\n(.f .Af "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9" \\*(;G .. .aF 5 \\n(.f "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7" .. .aF 5 1 "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7" .. .aF 1 5 "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7" ..

0

..

..

GETCWD 3
NAME
getcwd - return absolute path to current directory
SYNOPSIS
.EX #include <ast.h> char* getcwd(char* buf, size_t len);
DESCRIPTION
.L getcwd copies the absolute path name of the current directory info into buf of length len . The return path may be longer than .LR PATH_MAX . If "buff == 0" then space is allocated via malloc (3) and len extra characters are reserved after the generated path name. A pointer to the path name is returned, .L 0 on error.
"SEE ALSO"
pathcd(3)