Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sorry for the simple question, but how could I create the C-function with undefined number of parameters such as

int printf ( const char * format, ... ).

I would like to create function to use it as wrapper for printk:

void my_printk( const char * format, ...)
{
    printk("my log:");
    printk(format, ...);
    printk("\n");
}

Thanks

share|improve this question
What's printk? – AndreyT Apr 10 '11 at 17:23
printk is function for log from kernel - I use it in character device driver – teterevkov Apr 10 '11 at 17:26
1  
Well, you can create your own function with variable arguments, but AFAIK you can't pass them to another function. – dwo Apr 10 '11 at 17:29
As you get more experienced with the site, try to wait for answers which include content that will be helpful to future users, before accepting an answer. – Heath Hunnicutt Apr 10 '11 at 19:05

2 Answers

up vote 1 down vote accepted

You're close. Have a look here: http://publications.gbdirect.co.uk/c_book/chapter9/stdarg.html

share|improve this answer
1  
Once upon a time I read, that you should include the most important content of the answer at SE itself, and not in links, to make SE in the long time the best source of information. Unfortunately, I can't find the place again, where I read it (SE/SO-meta, about, faq). – user unknown Apr 10 '11 at 18:08
quote the most relevant part of an important link, in case the target site is unreachable or goes permanently offline. stackoverflow.com/questions/how-to-answer – lesmana Apr 10 '11 at 18:42

You have to convert the args to a va_list before you can pass it to another function. Then you can pass it to the 'v' version of the function.

So you can do:

void my_printk( const char * format, ...)
{
    va_list ap;
    va_start(ap, format);
    printk("my log:");
    vprintk(format, ap);
    printk("\n");
    va_end(ap);
}

Most of the time, any function like this will provide a 'v' version, and yours should too:

void my_vprintk( const char * format, va_list ap)
{
    printk("my log:");
    vprintk(format, ap);
    printk("\n");
}

void my_printk( const char * format, ...)
{
    va_list ap;
    va_start(ap, format);
    my_vprintk(format, ap);
    va_end(ap);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.