1 /*
2 FUNCTION
3 <<atoll>>---convert a string to a long long integer
4
5 INDEX
6 atoll
7 INDEX
8 _atoll_r
9
10 SYNOPSIS
11 #include <stdlib.h>
12 long long atoll(const char *<[str]>);
13 long long _atoll_r(struct _reent *<[ptr]>, const char *<[str]>);
14
15 DESCRIPTION
16 The function <<atoll>> converts the initial portion of the string
17 pointed to by <<*<[str]>>> to a type <<long long>>. A call to
18 atoll(str) in this implementation is equivalent to
19 strtoll(str, (char **)NULL, 10) including behavior on error.
20
21 The alternate function <<_atoll_r>> is a reentrant version. The
22 extra argument <[reent]> is a pointer to a reentrancy structure.
23
24
25 RETURNS
26 The converted value.
27
28 PORTABILITY
29 <<atoll>> is ISO 9899 (C99) and POSIX 1003.1-2001 compatable.
30
31 No supporting OS subroutines are required.
32 */
33
34 /*
35 * Copyright (c) 1988, 1993
36 * The Regents of the University of California. All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. Neither the name of the University nor the names of its contributors
47 * may be used to endorse or promote products derived from this software
48 * without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * SUCH DAMAGE.
61 */
62
63 #include <stdlib.h>
64 #include <stddef.h>
65
66 #ifndef _REENT_ONLY
67 long long
atoll(const char * str)68 atoll (const char *str)
69 {
70 return strtoll(str, (char **)NULL, 10);
71 }
72 #endif /* !_REENT_ONLY */
73