2
votes
3answers
134 views
Passing one va_list as a parameter to another
I'm creating an application using the fastcgi library, and their method of printing is a little verbose. I'm trying to wrap their fprintf function in my own method:
I would like to turn
…
2
votes
2answers
89 views
x64 va_list in Visual Studio 2005
I have a class non-static member function, and it has variable arguments, I'm compiling on Visual Studio 2005, with the 64-bit runtime, on 64-bit Windows.
void Class::Foo(void* ptr,...)
{
va_list …
0
votes
1answer
261 views
C varargs - va_copy issues
I'm writing a function in C that takes a variable number of arguments.
size_t myprintf(char *fmt, ...);
So far, so good. I've decided it's best to do things the Right Way™ and make a version that …
3
votes
3answers
268 views
Populating a va_list
Is there a way to create a va_list from scratch? I'm trying to call a function that takes a va_list as a parameter:
func(void **entry, int num_args, va_list args, char *key);
...from a function …
