Re: msvcrt: portable printf integer conversions

2006-02-13 Thread Jesse Allen
Ignore the previous email. It got lost months ago.

msvcrt: portable printf integer conversions

2006-02-13 Thread Jesse Allen
I've been trying to get some functionality to the %I64 printf size specifier. My last patch was rejected because it was non-portible. Therefore, I've written an internal function, pf_integer_conv, to handle the conversion of integers only -- not floats. The patch tries to not impact the curre

Re: msvcrt: portable printf integer conversions

2005-09-26 Thread Mike McCormack
Jesse Allen wrote: I've read various printf implementation over time. The last one, ReactOS, seemed to provide support for numbering systems base 2 through 36. You'll see my version does mimic theirs, but we never do anything other than 8, 10, and 16. I'm not sure if there is any printf out

Re: msvcrt: portable printf integer conversions

2005-09-26 Thread Jesse Allen
On 9/26/05, Mike McCormack <[EMAIL PROTECTED]> wrote: > > Hi Jesse, > > > Code to handle %I64 and %I32 has been missing for a while. Thanks for > looking into this. > > Please make sure to write some test cases, as changing it will probably > break something (or even make some of the current test

Re: msvcrt: portable printf integer conversions

2005-09-26 Thread Mike McCormack
Hi Jesse, Jesse Allen wrote: Here's a patch to start the work on getting our own printf number conversions done internally. It adds pf_integer_conv, which is capable of handling d,x,o,u,i. However, a large part of my intent is to add support for I64 size integers. So I've decided to only fow