This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: implementation problem in C
- From: Momchil Velikov <velco at fadata dot bg>
- To: "David Janssens" <dja at info dot ucl dot ac dot be>
- Cc: <gcc-help at gnu dot org>
- Date: 30 Jan 2003 17:20:26 +0200
- Subject: Re: implementation problem in C
- References: <00fc01c2c871$e7b1e410$4be56882@atlas.info.ucl.ac.be>
>>>>> "David" == David Janssens <dja@info.ucl.ac.be> writes:
David> Can someone please help me with this simple implementation problem in C:
David> I have a table in which each entry designates a pointer to some function,
David> the number of argument it expects and if it returns a value:
In GCC, try ``__builtin_apply''. Alternatively, you may want to
recode the functions to take variable number of arguments.
~velco