The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
43 views

Why is va_arg returning NULL at the end of a variable argument list of type char*?

This is what has been said about va_arg in the reputed link below: http://www.cplusplus.com/reference/cstdarg/va_arg/ Notice also that va_arg does not determine either whether the retrieved argument ...
0
votes
3answers
64 views

call C function with variable arguments count

How can I rewrite the following block of code? I need to extract some arguments via function token() and then call printf with those arguments. Number of arguments isn't known. char *S[32]; int i=0; ...
0
votes
2answers
45 views

strange behavior when passing variadic arguments

I thougt, printf would take also a va_list but when i do so, printf doesn't do what I want printf to do: void Log(int loglevel, char* string, ...) { va_list args; va_start(args, string); ...
2
votes
0answers
49 views

void* in variadic functions

I am trying to create a method that accepts an arbitrary number of arguments that will be used to create an NSInvocation (an object wrapper around a method). Can void pointers be passed as arguments ...
2
votes
2answers
81 views

Give type as argument like va_arg in C

va_arg(a,type) macro expands to __builtin_va_arg(a,type) which is built-in part of compiler. Is it possible to implement type based functionality, if yes how?
1
vote
2answers
97 views

va_arg 64bit issue

I've such C code. On 64-bit linux system the result is: 4294967264 instead of -32. Both clang and gcc produce binary with same incorrect results. The problem in the line: *v = va_arg(args, long); ...
0
votes
0answers
51 views

va_arg and wcslen Visual C++ on Windows mobile not working

I am writing small app for Windows mobile 6.5 and I found strange behavior of va_arg and wcslen. When I ask for length of string passed by va_arg, the whole function does nothing. I think it's whole ...
0
votes
1answer
84 views

Problems with variable argument list of unknown length

There is a function my_init(...) that uses a variable argument list. The length of this list is not known, but there is a maximum of 100 and the elements are always char-arrays (means plain ...
1
vote
1answer
94 views

Getting ellipses function parameters without an initial argument

So I've been making a custom parser for a scripting language, and I wanted to be able to pass only ellipses arguments. I don't need or want an initial variable, however Microsoft and C seem to want ...
8
votes
6answers
284 views

Is there a standard way of determining the number of va_args?

I'm experimenting with variable arguments in C++, using va_args. The idea is useful, and is indeed something I've used a lot in C# via the params functionality. One thing that frustrates me is the ...
3
votes
2answers
140 views

SBRM/RAII for std::va_list/va_start()/va_end use

My code contains snippets like these: std::va_list ap; va_start(ap, msgfmt); snprintf_buf buf; const tchar * msg = buf.print_va_list(msgfmt, ap); va_end(ap); These are short and ...
2
votes
1answer
978 views

C: how to write a function like printf

I have learnt to use library stdarg.h to have function with unknown number of arguments. Here is a simple function how to use this : void print(int args,...){ va_list ap; va_start(ap, args); ...
0
votes
1answer
481 views

__VA_ARGS__ Macro expansion

I'm trying to get my macro to work like NSLog() which accepts variable arguments. Code below causes parse issues. What is the correct way to define this? #define TF_CHECKPOINT(f, ...) \ do { \ ...
0
votes
1answer
196 views

How come va_arg returns the address 0, then 1 then 2?

I'm retrieving va_args but I'm not sure why it sometimes return 0, 1, 2 and so on. It crashes my program when I try to access it, and I have no way of asserting what it returns. Any ideas? ...
4
votes
3answers
168 views

Do I need to va_end when an exception is thrown?

I have a logging framework based on printf-style formatting: void Logger::debug(const char *fmt, ...) { va_list args; va_start(args, fmt); this->output(DebugLevel, fmt, args); ...
1
vote
1answer
177 views

parsing structures through va_arg

Say, among other elements I want to parse a C structure, from file1.c : typedef struct mynode{ int* x; int length; }node; int callerFunction(int myLength){ //memory space node* n = ...
2
votes
4answers
142 views

Size in bytes of ellipsis function arguments

I have a function : static int myprintf(const char* fmt, ...) I want to know the size in bytes of all myprintf arguments,if they were printed to buffer. I need allocate an array dynamically to ...
4
votes
1answer
471 views

pointer to a va_list in amd64 ABI

I have a concern about variadic functions under Linux amd64 (x86_64). My example build and work fine on linux i386 (ia32), but when built for linux amd64, GCC produces such errors: stdarg.c: In ...
-3
votes
1answer
146 views

c - how to make a function with multiple arguments (va_list)?

I have a nice C++ function, which supports multiple arguments through va_list + va_start + va_arg. But I had to convert my project to C. After conversion, this va_list construction gets rejected by ...
0
votes
2answers
514 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, ...
1
vote
4answers
551 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, ...
3
votes
5answers
257 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); ...
1
vote
2answers
194 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 ...
-3
votes
3answers
242 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 } ...
0
votes
1answer
287 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 ...
3
votes
9answers
293 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
186 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 ...
0
votes
1answer
242 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, ...
1
vote
2answers
241 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
1k 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 ...
2
votes
4answers
712 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
613 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
124 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 ...
5
votes
3answers
2k 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 ...
0
votes
1answer
437 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 ...
1
vote
1answer
917 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) { ...
5
votes
6answers
2k 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 ...
0
votes
1answer
422 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
489 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 ...
2
votes
4answers
3k 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 ...
0
votes
3answers
443 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* ...
1
vote
5answers
2k 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, ...
12
votes
4answers
9k 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 ...