473,625 Members | 3,085 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Nesting variadic functions

Hi

Is it possible to nest variadic functions? Eg to do something like
this:

void mainfunc(char *fmt, ...)
{
va_list args;
va_start(args,f mt);

do something;

subfunc(fmt, args);
va_end(args);
}

void subfunc(char *fmt, ...)
{
va_list args;

va_start(args,f mt);
etc
va_end(args);
}
The above type of code will compile but the arguments in subfunc() are
corrupted. Is there a way to do this?

Thanks for any help

B2003

Sep 17 '07 #1
4 3629
Boltar said:
Hi

Is it possible to nest variadic functions? Eg to do something like
this:

void mainfunc(char *fmt, ...)
{
va_list args;
va_start(args,f mt);

do something;

subfunc(fmt, args);
va_end(args);
}

void subfunc(char *fmt, ...)
Oh, and you were doing so well.

void subfunc(char *fmt, va_list args)
{
va_list args;
Drop this...
>
va_start(args,f mt);
....and this...
etc
va_end(args);
....and this, and let the caller's va_end take the strain. (In the caller,
don't call va_args after calling subfunc - or, if you must, you'll first
have to call va_end and va_start again.)

--
Richard Heathfield <http://www.cpax.org.uk >
Email: -www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Sep 17 '07 #2
On Sep 17, 1:20 pm, Richard Heathfield <r...@see.sig.i nvalidwrote:
Boltar said:


Hi
Is it possible to nest variadic functions? Eg to do something like
this:
void mainfunc(char *fmt, ...)
{
va_list args;
va_start(args,f mt);
do something;
subfunc(fmt, args);
va_end(args);
}
void subfunc(char *fmt, ...)

Oh, and you were doing so well.

void subfunc(char *fmt, va_list args)
{
va_list args;

Drop this...
va_start(args,f mt);

...and this...
etc
va_end(args);

...and this, and let the caller's va_end take the strain. (In the caller,
don't call va_args after calling subfunc - or, if you must, you'll first
have to call va_end and va_start again.)
Works nicely. Thanks.

B2003

Sep 17 '07 #3
In article <11************ **********@d55g 2000hsg.googleg roups.com>,
Boltar <bo********@yah oo.co.ukwrote:
>Is it possible to nest variadic functions? Eg to do something like
this:
Unfortunately C doesn't have the equivalent of Lisp's "apply".

Look at the printf() family of functions. In particular observe how
for each function there is a "v" version, that takes a va_list instead
of multiple arguments. You may find it useful to do the same for all
your variadic functions - not just the internal ones - to make it
convenient for others to write wrappers around them.

-- Richard
--
"Considerat ion shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Sep 17 '07 #4
Boltar wrote:
>
Is it possible to nest variadic functions? Eg to do something like
this:

void mainfunc(char *fmt, ...) {
va_list args;

va_start(args,f mt);
do something;
subfunc(fmt, args);
va_end(args);
}

void subfunc(char *fmt, ...) {
va_list args;

va_start(args,f mt);
etc
va_end(args);
}

The above type of code will compile but the arguments in subfunc()
are corrupted. Is there a way to do this?
Define the parameter as "const char *fmt". Maybe 'do something' or
subfunct() is altering *fmt? (or fmt). It looks like O(n * n)
where n is the number of arguments.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home .att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Sep 17 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1886
by: Loony | last post by:
Hi, I want to use variadic functions with stl containers as arguments but I am not sure if that is possible and if so how. I'm using gcc 3.3 on Suse 8.2 Hope someone can help me. Thanx in advance
3
3541
by: Loony | last post by:
Hi, I have a problem with my code. I am using a virtual class in which I define a variadic function. This class is inherited by another one which then implements it. The problem occurs while linking: undefined reference to `vtable undefined reference to `typeinfo I'm using gcc 3.3 to compile the code.
89
6484
by: Sweety | last post by:
hi, Is main function address is 657. its show in all compiler. try it & say why? bye,
5
2159
by: Christopher Benson-Manica | last post by:
Do variadic functions (such as printf()) always scan the format string for format specifiers, even when there are no additional arguments? If it is instead a QoI issue, what would be true for a typical implementation? Basically, I'm wondering whether there is any advantage to using puts() instead of printf() for output of a string. -- Christopher Benson-Manica | I *should* know what I'm talking about - if I
19
4240
by: Ross A. Finlayson | last post by:
Hi, I hope you can help me understand the varargs facility. Say I am programming in ISO C including stdarg.h and I declare a function as so: void log_printf(const char* logfilename, const char* formatter, ...); Then, I want to call it as so:
2
2905
by: Florian G. Pflug | last post by:
Hi I faintly remember that I once stumbled upon a way to declare variadic functions (functions that take a variable number of arguments) in plpgsql - but I just searched the docs and can't find any reference to variadic functions. So - please enlighten me - are there variadic functions in plpgsql, or are there none?
9
3267
by: CryptiqueGuy | last post by:
Consider the variadic function with the following prototype: int foo(int num,...); Here 'num' specifies the number of arguments, and assume that all the arguments that should be passed to this function are of type int. (My question has nothing to do with the definition of the function foo, so don't bother about it.) If I call the function as: foo(2,3,4,5,6,7,8);/*More arguments than expected*/
4
4935
by: Boltar | last post by:
Hi I think I posted a question similar to this on here a while back but I can't find the thread and I need something more general anyway. My problem is I have 2 variadic functions , one of which needs to call the other passing its entire argument list but the other needs to be callable from anywhere else in the program as a variadic too, ie it *can't* have va_list as a paramater type.
8
3427
by: Christof Warlich | last post by:
Hi, is there any way to access individual elements in the body of a variadic macro? I only found __VA_ARGS__, which always expands to the complete list. Thanks for any help, Christof
0
8259
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8192
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8637
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8502
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7188
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4090
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2621
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1805
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1504
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.