*/
for (c=ReadBlobByte(image); c != EOF; c=ReadBlobByte(image))
{
- while (isspace((int) ((unsigned char) c)) != 0)
+ while (isspace(c) != 0)
c=ReadBlobByte(image);
if (c == '#')
{
*/
c=PNMComment(image,&comment_info,exception);
c=ReadBlobByte(image);
- while (isspace((int) ((unsigned char) c)) != 0)
+ while (isspace(c) != 0)
c=ReadBlobByte(image);
}
p=keyword;
*p='\0';
if (LocaleCompare(keyword,"endhdr") == 0)
break;
- while (isspace((int) ((unsigned char) c)) != 0)
+ while (isspace(c) != 0)
c=ReadBlobByte(image);
p=value;
while (isalnum(c) || (c == '_'))