Tagged Questions

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
739 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. ...
4
votes
2answers
282 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
56 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
154 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
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
85 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
3answers
421 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 ...
1
vote
6answers
172 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
4answers
414 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
2answers
27 views

How do you properly create a va_list dynamically at runtime for Cocos2D CCMenu menuWithItems?

I'm having a hell of a time with the CCMenu class. To create a menu with this class it forces you to call a method called initWithItems, which takes a va_list. I need to generate this list at runtime, ...
0
votes
2answers
218 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); ...