]> git.sur5r.net Git - cc65/blob - _longminstr.c
290c7f1557d29d71d4d124b87b4624e4b6e17f2a
[cc65] / _longminstr.c
1 /*
2  * Ullrich von Bassewitz, 2012-11-26
3  *
4  * Minimum value of a long. Is used in ascii conversions, since this value 
5  * has no positive counterpart than can be represented in 32 bits. In C,
6  * since the compiler will convert to the correct character set for the 
7  * target platform.
8  */
9
10
11
12 const unsigned char _longminstr[] = "-2147483648";
13
14
15