I'm trying to port asprintf() to windows, since its a GCC library function on Linux, and doesn't exist on Windows.

I'm stuck at calculating the var args' length so I can allocate memory for them. I tried two approaches:

  1. Write the var args to a file, then taking the result of the function (which is the number of bytes written = var args' length) but its silly since the user will see internal random data in his app dir

  2. Use the function vsprintf() with NULL as first parameter (the variable to write output to) so it returns the length of var args, but this one failed because it works on XP only, Windows 7 doesn't allow writing to a NULL variable.

Any more ideas on how to solve this?

link|improve this question

65% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Try using _vscprintf instead, it only returns the required count (not including the terminating null)

link|improve this answer
thank you so much :), i never knew such function exists – killercode Jan 19 '11 at 15:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.