Newbie Question : parsing functions with unknown number of arguments

Hi,

How can i parse functions which look like -

int foo (char a,...)
{
   //body
}

with a function call foo(x,y,z); // x,y,z are all char

I am using recursiveASTVisitor and the VisitFunctionDecl for getting the
parameters.

Thanks