Tagged Questions
The va-arg tag has no wiki summary.
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 ...
4
votes
3answers
591 views
Count number of parameters in C variable argument method call
When using va_start(), va_arg() and va_end() to read parameters passed to a method, is there a way to count how many arguments there are?
According to the man page if you call va_arg() too many times ...
3
votes
5answers
119 views
va_arg gives garbage text
I made a simple test case:
static void va_test(char* str_arg, ...)
{
va_list ap;
va_start(ap, str_arg);
for( ; ; ) {
if (str_arg == NULL)
break;
int n = va_arg(ap,int);
...
3
votes
9answers
131 views
Verifying variable arguments are of expected type
I'm currently writing a function which will take a variable number of arguments. I pass the number of arguments into the function and then will iterate through the arguments list.
Each of the passed ...
3
votes
3answers
164 views
a little problem with C
I want to implement a function which has a variable number of arguments. This function allows me to call another function using the list of optional arguments. The purpose of this function is to call ...
3
votes
6answers
627 views
va_list with unknown type names - only the byte size is known!
I'm having a C programming question: I want to write a function with variable argument lists, where the specific types of each argument is not know - only its size in bytes. That means, if I want to ...
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
4answers
2k views
Objective-C va_list and selectors
Is it possible to use @selector and performSelector: (or similar) with methods using variable arguments list?
I'm writing a class that can be assigned a delegate to override the default behavior. In ...
1
vote
2answers
55 views
Concatenate text with numbers in a function with variable number of parameters
I made a function in C, that concatenates a variable number of strings.
That's my code:
char* texto(const char* s, ...){
va_list args;
char *tmp;
char *res;
size_t len ...
1
vote
2answers
133 views
Add prefix to elements of a variadic macro
I am working on morphing C++ into Javascript and I would like to write a macro function that does the following:
function (x, y, z, ...)
to
[=] (var a, var b, var x, var y, var z, ...) -> Object
...
1
vote
5answers
247 views
C++ how to use ellipsis without a preceding argument
Hi
I have a class with a member function that takes a variable number of arguments. The class knows how many arguments to expect once it is instantiated. e.g
class myClass
{
myClass(int ...
1
vote
4answers
244 views
Segmentation fault in va_args parsing
Why does the code below gives EXC_BAD_ACCESS, could not access memory?
int combine_strings(char **outputStr,...)
{
va_list ap;
char *s, *out=0;
int len=0;
va_start(ap,outputStr);
...
1
vote
2answers
394 views
c++ va_arg typecast issue
All,
I am writing a small c++ app and have been stumped by this issue. Is there a way to create (and later catch ) the error while accessing element from va_list macro using va_arg if element type is ...
1
vote
2answers
96 views
Getting function argument types
Suppose I have a call to a function which takes a variable number of arguments in my source code. I want to do some kind of static analysis on this source code to find the type of the arguments being ...
1
vote
1answer
462 views
va-args not resolving correctly
I have the following function:
void Register(Data* _pData, uint32 _Line, const char* _pFile, ...)
{
va_list Args;
va_start(Args, _pFile);
for(uint i = 0;i m_NumFloats; ++i)
{
...
1
vote
5answers
720 views
How to convert a Variable argument function into a macro?
I have a variable argument function which prints error messages in my application,whose code is given below.
void error(char *format,...)
{ va_list args;
printf("Error: ");
va_start(args, ...
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
1answer
131 views
va_arg error on Linux i386
I am developing a DEBUG message printing function in my Pro*C code. I am getting error on following line:
fmt = va_arg(args, char *);
The error is as follow:
Syntax error at line 672, column 40, ...
0
votes
1answer
179 views
Can stdcall have a variable arguments?
As far as I know, only the caller-clean-stack convention can use variable arguments.
By the way, the WinApi StringCchPrintfW is declared like this.(I removed the SAL)
_inline HRESULT _stdcall
...
0
votes
1answer
215 views
problem with va_arg()
I want to wirte a function with variable arguments in this way:
static void configElement(U32 localFaultId,
char* name,
U32 report,
...
0
votes
3answers
334 views
How to get address of va_arg?
I hack some old C API and i got a compile error with the following code:
void OP_Exec( OP* op , ... )
{
int i;
va_list vl;
va_start(vl,op);
for( i = 0; i < op->param_count; ++i ...
0
votes
3answers
347 views
Passing on va_arg twice to a function result in same value
I'm trying to use va_arg to make a generic factory function in my GUI library.
When passing va_arg twice in the same function they pass on the same value instead of two different:
GUIObject* ...
-3
votes
3answers
124 views
How to get all arguments from following function in c/c++?
following is the implementation of my method
static VALUE myMethod(VALUE self, VALUE exc, const char* fmt, ...) {
// Need to get all the arguments passed to this function and print it
}
...