in reply to I love anonymous functions!
which gives you a single signature for all of your calls.struct data { int type; union { int i; char *c; } value; }; int the_function(int argc, struct data *argv) { .... }
Not exactly clean, but workable...
Michael
|
|---|