]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/strtol.c
* configure: Regenerate for config/accross.m4 correction.
[thirdparty/gcc.git] / libiberty / strtol.c
index 028d6101dfdfb1a9d171b7a76da0a678d27eb364..d9f54cc8f7ac23e13cce3dd241dab43860792e31 100644 (file)
@@ -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
@@ -38,8 +39,9 @@ between 2 and 36 inclusive, or be the special value 0.  If @var{base}
 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 endptr is as that of
-@code{strtod} above.
+@code{0x} is allowed.  The handling of @var{endptr} is as that of
+@code{strtod} above.  The @code{strtoul} function is the same, except
+that the converted value is unsigned.
 
 @end deftypefn