2012-11-26 16:28:46 +00:00
|
|
|
/*
|
2014-06-30 05:10:35 -04:00
|
|
|
** Ullrich von Bassewitz, 2012-11-26
|
|
|
|
**
|
|
|
|
** Minimum value of a long. Is used in ascii conversions, since this value
|
|
|
|
** has no positive counterpart than can be represented in 32 bits. In C,
|
|
|
|
** since the compiler will convert to the correct character set for the
|
|
|
|
** target platform.
|
|
|
|
*/
|
2012-11-26 16:28:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const unsigned char _longminstr[] = "-2147483648";
|
|
|
|
|
|
|
|
|
|
|
|
|