1Description: 2Convert string to 'long long' or 'unsigned long long', with error checking. 3 4Files: 5lib/xstrtoll.c 6lib/xstrtoull.c 7 8Depends-on: 9strtoll 10strtoull 11xstrtol 12 13configure.ac: 14AC_LIBOBJ([xstrtoll]) 15AC_LIBOBJ([xstrtoull]) 16AC_TYPE_LONG_LONG_INT 17test $ac_cv_type_long_long_int = no \ 18 && AC_MSG_ERROR( 19 [you lack long long support; required by gnulib's xstrtoll module]) 20 21Makefile.am: 22 23Include: 24"xstrtol.h" 25 26License: 27GPL 28 29Maintainer: 30Jim Meyering 31