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