mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-08 17:22:05 +03:00
* modules/stdint-h: Renamed from modules/stdint. * modules/stdint-h-tests: Renamed from modules/stdint-tests. * modules/stdint-h-c++-tests: Renamed from modules/stdint-c++-tests. * tests/test-stdint-h.c: Renamed from tests/test-stdint.c. * tests/test-stdint-h-c++.cc: Renamed from tests/test-stdint-c++.cc. * tests/test-stdint-h-c++2.cc: Renamed from tests/test-stdint-c++2.cc. * doc/posix-headers/stdint.texi: Update. * doc/gnulib-readme.texi: Update. * doc/gnulib.texi: Update. * modules/* (Depends-on): Update. * modules/stdint: New file.
37 lines
786 B
Plaintext
37 lines
786 B
Plaintext
Description:
|
|
strtoumax() function: convert string to 'uintmax_t'.
|
|
|
|
Files:
|
|
lib/strtoimax.c
|
|
lib/strtoumax.c
|
|
m4/strtoumax.m4
|
|
|
|
Depends-on:
|
|
inttypes-h-incomplete
|
|
assert-h [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1]
|
|
stdint-h [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1]
|
|
strtoull [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_STRTOUMAX
|
|
gl_CONDITIONAL([GL_COND_OBJ_STRTOUMAX],
|
|
[test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1])
|
|
AM_COND_IF([GL_COND_OBJ_STRTOUMAX], [
|
|
gl_PREREQ_STRTOUMAX
|
|
])
|
|
gl_INTTYPES_MODULE_INDICATOR([strtoumax])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_STRTOUMAX
|
|
lib_SOURCES += strtoumax.c
|
|
endif
|
|
|
|
Include:
|
|
<inttypes.h>
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Paul Eggert
|