Tagged Questions
5
votes
5answers
704 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. ...
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
1answer
211 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];
...