Subject says it all really.
I have a number of vararg based routines that accept a number of
optional arguments.
Given that I know how to get these values from the stack (fortunately
[most of the time] I know what they are), do you have any suggestions as
to how I can reassemble the actual program stack from the perl stack so
that I can call these routines in C.
For example the perl XS prototype:-
int
ffedit(fmt,...)
char *fmt;
That needs to translate to the C function: int ffedit(char *fmt, ...) in
real life.
Dirk