Moved the string that contains the ascii representation of LONG_MIN into its
own file. git-svn-id: svn://svn.cc65.org/cc65/trunk@5941 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
15
libsrc/common/_longminstr.c
Normal file
15
libsrc/common/_longminstr.c
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
const unsigned char _longminstr[] = "-2147483648";
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user