Tagged Questions
1
vote
5answers
118 views
What is the equivalent of PHP vsprintf() in C?
I've this PHP code and want the equivalent in C for performance reasons.
I've done R&D Google; I didn't get any solution.
The code is:
<?php
$array = array('tom','jerry','cat'); ...
0
votes
1answer
133 views
Calculate Var Args Length in C
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 ...