//f is a File*
void fwrite(int line = __LINE__)(...)
{
        f.write("/*",line,"*/ ");
        f.write(_argptr); //prints e.g 7FFF5B055440
}
basically i want
fwrite("1 ","2\t","3\n");
to print
/*7*/ 1 2    3

do I have to iterate through _argptr

Reply via email to