summaryrefslogtreecommitdiff
path: root/libiberty/functions.texi
diff options
context:
space:
mode:
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2007-07-23 17:29:17 +0000
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2007-07-23 17:29:17 +0000
commitb4a8bca51d5f40f6e063e12369e3672bcd8aa8e6 (patch)
treec6b5774162982b7e4857f4be066350a435189feb /libiberty/functions.texi
parent1f3b83af524f926a42b312b954966ca349d9b69f (diff)
downloadgcc-b4a8bca51d5f40f6e063e12369e3672bcd8aa8e6.tar.gz
* argv.c (writeargv): Fix typo in inline documentation.
* functions.texi: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126855 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/functions.texi')
-rw-r--r--libiberty/functions.texi24
1 files changed, 17 insertions, 7 deletions
diff --git a/libiberty/functions.texi b/libiberty/functions.texi
index fd3e8e74ea7..e6ab84c6999 100644
--- a/libiberty/functions.texi
+++ b/libiberty/functions.texi
@@ -214,7 +214,7 @@ symbolic name or message.
@end deftypefn
-@c argv.c:293
+@c argv.c:348
@deftypefn Extension void expandargv (int *@var{argcp}, char ***@var{argvp})
The @var{argcp} and @code{argvp} arguments are pointers to the usual
@@ -268,15 +268,16 @@ value 1). If @var{valu} is zero, zero is returned.
@end deftypefn
-@c filename_cmp.c:28
+@c filename_cmp.c:32
@deftypefn Extension int filename_cmp (const char *@var{s1}, const char *@var{s2})
-Return zero if the two paths @var{s1} and @var{s2} are equivalent.
-If not equivalent, the returned value is similar to what strcmp would
-return. In other words, it returns a negative value if @var{s1} is less
-than @var{s2}, or a positive value if @var{s2} is greater than @var{s2}.
+Return zero if the two file names @var{s1} and @var{s2} are equivalent.
+If not equivalent, the returned value is similar to what @code{strcmp}
+would return. In other words, it returns a negative value if @var{s1}
+is less than @var{s2}, or a positive value if @var{s2} is greater than
+@var{s2}.
-This function does not normalize path names. As a result, this function
+This function does not normalize file names. As a result, this function
will treat filenames that are spelled differently as different even in
the case when the two filenames point to the same underlying file.
However, it does handle the fact that on DOS-like file systems, forward
@@ -1471,6 +1472,15 @@ does the return value. The third argument is unused in @libib{}.
@end deftypefn
+@c argv.c:293
+@deftypefn Extension int writeargv (const char **@var{argv}, FILE *@var{file})
+
+Write each member of ARGV, handling all necessary quoting, to the file
+named by FILE, separated by whitespace. Return 0 on success, non-zero
+if an error occurred while writing to FILE.
+
+@end deftypefn
+
@c xatexit.c:11
@deftypefun int xatexit (void (*@var{fn}) (void))