aboutsummaryrefslogtreecommitdiff
path: root/libiberty/strtol.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2001-10-15 22:50:13 -0400
committerDJ Delorie <dj@gcc.gnu.org>2001-10-15 22:50:13 -0400
commitaac04c15d761628889f138b16219bce27f25bbb2 (patch)
tree58903ff3e4335306b7c9f5c24e8baf3b9a9922a8 /libiberty/strtol.c
parent2d4368e6cd739fadc7e3cc1111f30f2941e8a8a3 (diff)
downloadgcc-aac04c15d761628889f138b16219bce27f25bbb2.zip
gcc-aac04c15d761628889f138b16219bce27f25bbb2.tar.gz
gcc-aac04c15d761628889f138b16219bce27f25bbb2.tar.bz2
Makefile.in (TEXIFILES): Add fnmatch.txh.
* Makefile.in (TEXIFILES): Add fnmatch.txh. (maint-undoc): New. maint-tool: Add "undoc" tool. * alloca.c, argv.c, asprintf.c, choose-temp.c, concat.c, fdmatch.c, ffs.c, getruntime.c, insque.c, lbasename.c, make-temp-file.c, mkstemps.c, pexecute.c, random.c, spaces.c, strerror.s, strsignal.c, strtol.c, vasprintf.c: Add or update documentation. * fnmatch.txh: New. * functions.texi: Regenerate. From-SVN: r46274
Diffstat (limited to 'libiberty/strtol.c')
-rw-r--r--libiberty/strtol.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libiberty/strtol.c b/libiberty/strtol.c
index fa84a2e..d9f54cc 100644
--- a/libiberty/strtol.c
+++ b/libiberty/strtol.c
@@ -31,6 +31,7 @@
/*
@deftypefn Supplemental {long int} strtol (const char *@var{string}, char **@var{endptr}, int @var{base})
+@deftypefnx Supplemental {unsigned long int} strtoul (const char *@var{string}, char **@var{endptr}, int @var{base})
The @code{strtol} function converts the string in @var{string} to a
long integer value according to the given @var{base}, which must be
@@ -39,7 +40,8 @@ is 0, @code{strtol} will look for the prefixes @code{0} and @code{0x}
to indicate bases 8 and 16, respectively, else default to base 10.
When the base is 16 (either explicitly or implicitly), a prefix of
@code{0x} is allowed. The handling of @var{endptr} is as that of
-@code{strtod} above.
+@code{strtod} above. The @code{strtoul} function is the same, except
+that the converted value is unsigned.
@end deftypefn