Frankly I don't see what "%+c" would mean. "%c" means a character, not an integer. The string "ÿ" should always give the character 'ÿ' when scanned with "%c".
/ Marcus Comstedt (ACROSS) (Hail Ilpalazzo!)
Previous text:
2004-03-23 15:36: Subject: 7.6
The bug here is really that sscanf %+c doesn't work as sscanf %+1c.
array_sscanf("\xff","%+1c")[0];
(6) Result: -1
/ Martin Nilsson (provokatör)