variable number of strings passed to function - how?
David Keppel
pardo at june.cs.washington.edu
Wed Oct 26 03:14:14 AEST 1988
henry at utzoo.uucp (Henry Spencer) writes:
>[ arguments passed: forwards, backwards, registers, ... ]
This probably seems like a silly question, but are there any compilers
that pass arguments globally? Things of the form
static void
foo (m, n)
int m, n;
{
if (m==0)
return;
m = bletch (m,n);
foo (m,n);
}
Would win from this. I doubt that these account for a
significant part of the usage.
--
pardo at cs.washington.edu
{rutgers,cornell,ucsd,ubc-cs,tektronix}!uw-beaver!june!pardo
More information about the Comp.lang.c
mailing list