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:
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
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?