1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/common/_longminstr.c

16 lines
343 B
C
Raw Normal View History

/*
** Ullrich von Bassewitz, 2012-11-26
**
2022-04-17 14:06:22 +00:00
** 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,
2022-04-17 14:06:22 +00:00
** since the compiler will convert to the correct character set for the
** target platform.
*/
const unsigned char _longminstr[] = "-2147483648";