Use a member function to set a symbol's language
[deliverable/binutils-gdb.git] / libiberty / getcwd.c
index 344556392b31c0fab62f2c859392b0211d48581e..28f26eb179ff37fae4965070aee983a414e2966a 100644 (file)
@@ -2,24 +2,18 @@
    This function is in the public domain. */
 
 /*
-NAME
-       getcwd -- get absolute pathname for current working directory
 
-SYNOPSIS
-       char *getcwd (char pathname[len], len)
+@deftypefn Supplemental char* getcwd (char *@var{pathname}, int @var{len})
 
-DESCRIPTION
-       Copy the absolute pathname for the current working directory into
-       the supplied buffer and return a pointer to the buffer.  If the 
-       current directory's path doesn't fit in LEN characters, the result
-       is NULL and errno is set.
+Copy the absolute pathname for the current working directory into
+@var{pathname}, which is assumed to point to a buffer of at least
+@var{len} bytes, and return a pointer to the buffer.  If the current
+directory's path doesn't fit in @var{len} characters, the result is
+@code{NULL} and @code{errno} is set.  If @var{pathname} is a null pointer,
+@code{getcwd} will obtain @var{len} bytes of space using
+@code{malloc}.
 
-       If pathname is a null pointer, getcwd() will obtain size bytes of
-       space using malloc.
-
-BUGS
-       Emulated via the getwd() call, which is reasonable for most
-       systems that do not have getcwd().
+@end deftypefn
 
 */
 
@@ -44,9 +38,7 @@ extern int errno;
 #endif
 
 char *
-getcwd (buf, len)
-  char *buf;
-  int len;
+getcwd (char *buf, size_t len)
 {
   char ourbuf[MAXPATHLEN];
   char *result;
This page took 0.02316 seconds and 4 git commands to generate.