Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
4k 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 ...
5
votes
5answers
695 views

Matching va_list types between compilers

I have a project that consists of a bunch of dynamically loaded modules. Originally, everything was always built with MSVC 2003, but lately I've been working on getting it to work with GCC. ...
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
3answers
42 views

How to set a default value when no extra arguments are present using va_list in C

I've had problem when trying write a function which has a default value when no extra arguments are given. I've tried detecting if the only argument given is equal to NULL (as suggested in other ...
3
votes
4answers
140 views

possible buffer overflow vulnerability for va_list in C?

I have the following code: int ircsocket_print(char *message, ...) { char buffer[512]; int iError; va_list va; va_start(va, message); vsprintf(buffer, message, va); ...
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 ...
3
votes
1answer
2k 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 ...
2
votes
4answers
76 views

Standard C cast of va_arg return value warning

I am developing a C program and have been stumped by this warning. I want to retrieve arguments from the list using va_arg. args[i] = (int) va_arg(argptr, int); or args[i] = (char) va_arg(argptr, ...
2
votes
1answer
206 views

fake va_list in ARC

I need to create in an iOS application a fake va_list to pass to a NSString initWithFormat:arguments: function, this is my code: NSArray *fixedArguments = [[NSArray alloc] initWithArray:arguments]; ...
2
votes
1answer
96 views

Can I modify a va_list before passing it on?

In my attempts to understand what I can and can't do with a va_list in (Objective-)C, I came across this little puzzle. I was hoping to create a category on NSString that would simplify the ...
2
votes
3answers
409 views

Use variadic functions in C89 without passing number of arguments or a final argument?

Let's say I have a variadic function foo(int tmp, ...), when calling foo function I need to know how many arguments there are. I'm aware of two ways of finding out how many arguments there are: Use ...
2
votes
2answers
440 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 ...
1
vote
6answers
168 views

C Variable Member List for structs, is this possible?

I have a question about structures having a "variable members list" similar to the "variable argument list" that we can define functions as having. I may sound stupid or completely off the line in ...
1
vote
1answer
305 views

How do I get a formatted NSString from format and va_list?

I'm developing a static library that will be distributed to other developers, who may need debug statements. So I have several levels of logging. In order to avoid constant appearance of ...
1
vote
4answers
398 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 ...
1
vote
2answers
549 views

NSString stringWithFormat swizzled to allow missing format numbered args

Based on this SO question asked a few hours ago, I have decided to implement a swizzled method that will allow me to take a formatted NSString as the format arg into stringWithFormat, and have it not ...
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, ...
0
votes
2answers
202 views

How can i pass a va_list through a function in C90

I want to pass a va_list through to another function. Here is an example of what i am trying to do: void my_printf_1(char* string, ...){ va_list ap; va_start (ap, string); ...
0
votes
1answer
2k views

va_list has not been declared

When compiling some working code on Fedora 11, I am getting this error: /usr/include/c++/4.4.1/cstdarg:56: error: ‘::va_list’ has not been declared I am using: [doriad@davedesktop VTK]$ g++ ...