pf_vsnprintf implementatnion of 'I', 'I32' and 'I64' prefixes for type specifiers

David Laight david at l8s.co.uk
Tue Aug 2 12:18:33 CDT 2005


On Tue, Aug 02, 2005 at 10:35:59PM +0900, Mike McCormack wrote:
> 
> It's a little more complicated than you think, after you start handling 
> all the width modifiers, various floating point formats, etc.

Not to mention coding in the 'brokenness'!
On windows:
  _snprintf(buff, 3, "ab" ) returns 2, buff = "ab<0>"
  _snprintf(buff, 3, "abcd" ) returns -1, buff = "ab<0>"
but:
  _snprintf(buff, 3, "abc" ) returns 3, buff = "abc"
without NUL terminating the string.

Do you replicate that?

	David

-- 
David Laight: david at l8s.co.uk



More information about the wine-devel mailing list