I want to realize the next function on Pascal
unsigned long SUBSTRINGS(sqlrcur *curref, ... )
{
va_list ap;
int argc, I;
.....
}
How can I do it on Pascal? Is it possible?
I want to realize the next function on Pascal
unsigned long SUBSTRINGS(sqlrcur *curref, ... )
{
va_list ap;
int argc, I;
.....
}
How can I do it on Pascal? Is it possible?
According to rosettacode,
Standard Pascal does not allow variadic functions.
See Free Pascal instead.
See also Pascal - How to pass variable number of parameters to a subprogram ? (variadic function)