Formatted string problem

Hey guys! I have a deep question. I wanted to create my own version of the openUrl() function. Mine was supposed to do the same thing except that it would take in a formatted string like sprintf(). Here's the function I made:
Thanks!
SuperSonic
- Code: Select all
void url(const char *__format, ...)
{
openUrl(__format);
}

Thanks!
SuperSonic