|
 |
hi,
"yesbird" <nomail@nomail> wrote:
> Your answer assumes that macros can accept variable number of arguments, but
> docs states following:
it does, sort of. eg
#macro foo(a, optional b)
#if (!defined(local.b))
/* no b given on call */
#end
...
#end
foo(1,2)
or
foo(1,)
presuming that a "misisng" when called can be used for your purpose.
(have a look at the 'queues.inc' for use of optional args)
regards, jr.
Post a reply to this message
|
 |