} while (c != EOF);
*p='\0';
p=options;
- while (isspace((int) ((unsigned char) c)) != 0)
+ while (isspace(c) != 0)
c=ReadBlobByte(image);
if (c == (int) '=')
{
}
}
if (*options != '{')
- if (isspace((int) ((unsigned char) c)) != 0)
+ if (isspace(c) != 0)
break;
}
if (options == (char *) NULL)
}
else
c=ReadBlobByte(image);
- while (isspace((int) ((unsigned char) c)) != 0)
+ while (isspace(c) != 0)
c=ReadBlobByte(image);
}
options=DestroyString(options);