]> git.sur5r.net Git - cc65/blob - libsrc/common/_longminstr.c
Merge remote-tracking branch 'upstream/master'
[cc65] / libsrc / common / _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