Tagged Questions
5
votes
7answers
2k views
va_list create dynamically
All:
I have faced such a problem.
I have a function
void foo(int cnt, va_list ap);
I need to use it, and but requirement is quite strict, number of va_list vary and it will change during ...
4
votes
2answers
274 views
C/C++ va_arg - Is there a way to skip an argument?
I am wanting to add functionality to sprintf(). Specifically, I want to be able to pass my own POD data types to it, but I am unsure of how to do this.
Supposedly, if you create the va_list, you can ...
3
votes
2answers
2k 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
...
1
vote
4answers
399 views
va_arg returning the wrong argument
With the following code va_arg is returning garbage for the second and third pass through vProcessType.
// va_list_test.cpp : Defines the entry point for the console application.
//
#include ...
0
votes
1answer
149 views
int32 len = va_args(va, int32) gives very large value on x86_64 GNU/Linux
void AppBuf(message_id_type msgID, int32 numPairs, va_list va)
{
int32 len = va_args(va, int32);
....
}
The above piece of code runs perfectly fine on windows (32 and 64 bit) and also on linux 32 ...
0
votes
2answers
190 views
c++ _vsnprintf unexpected format string
I have a logging function that takes in a variable number of arguments and uses _vsnprintf to format them. My problem is that when I debug my OCR automation the string it returns is sent to the log, ...