[libpng10] Imported from libpng-1.0.25rc1.tar

This commit is contained in:
Glenn Randers-Pehrson
2007-05-04 15:39:51 -05:00
parent 764b52ad45
commit 928d84e713
54 changed files with 252 additions and 194 deletions

View File

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