Imported from libpng-0.99m.tar

This commit is contained in:
Glenn Randers-Pehrson
1998-03-07 16:17:42 -06:00
parent ea3bcd7087
commit 7cd899c707
5 changed files with 328 additions and 118 deletions

View File

@@ -59,7 +59,7 @@ png_warning(png_structp png_ptr, png_const_charp message)
* if the character is invalid.
*/
#define isnonalpha(c) ((c) < 41 || (c) > 122 || ((c) > 90 && (c) < 97))
static const char png_digit[16] = {
static PNG_CONST char png_digit[16] = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
};