1 /*---------------------------------------------------------------------
2 strtoll() - convert a string to a long long int and return it
4 Copyright (C) 2018-2023, Philipp Klaus Krause . krauseph@informatik.uni-freiburg.de
5 2023, Benedikt Freisen . b.freisen@gmx.net
7 This library is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this library; see the file COPYING. If not, write to the
19 Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
22 As a special exception, if you link this library with other files,
23 some of which are compiled with SDCC, to produce an executable,
24 this library does not by itself cause the resulting executable to
25 be covered by the GNU General Public License. This exception does
26 not however invalidate any other reasons why the executable file
27 might be covered by the GNU General Public License.
28 -------------------------------------------------------------------------*/
37 #pragma disable_warning 196
39 // NOTE: strtoll has been derived from strtol
41 #ifdef __SDCC_LONGLONG
42 long long int strtoll(const char *nptr
, char **endptr
, int base
)
44 const char *ptr
= nptr
;
46 unsigned long long int u
;
49 while (isblank (*ptr
))
62 // strtoull() would accept leading blanks or signs (that might come after '-' handled above)
63 if (neg
&& (isblank (*ptr
) || *ptr
== '-' || *ptr
== '+'))
70 u
= strtoull(ptr
, &rptr
, base
);
72 // Check for conversion error
83 // Check for range error
84 if (!neg
&& u
> LLONG_MAX
)
89 else if (neg
&& u
> -LLONG_MIN
)
95 return (neg
? -u
: u
);