Made this define consistent with AMXX

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40615
This commit is contained in:
Scott Ehlert 2007-03-14 02:58:12 +00:00
parent 243aea7a3a
commit c4a677df79

View File

@ -22,7 +22,7 @@
#define LADJUST 0x00000004 /* left adjustment */
#define ZEROPAD 0x00000080 /* zero (as opposed to blank) pad */
#define UPPERDIGITS 0x00000100 /* make alpha digits uppercase */
#define UPPERDIGITS 0x00000200 /* make alpha digits uppercase */
#define to_digit(c) ((c) - '0')
#define is_digit(c) ((unsigned)to_digit(c) <= 9)