Original Post
seems there is no 'vfscanf' function in visual studio. vfprintf works fine how ever. any one run in to this problem? this is how i wanna use it:
#include <stdio.h>
#include <stdarg.h>
#include <varargs.h>
unsigned int File::ReadString(const char* text, ...)
{
if( text == 0 )
return 0;
va_list ap;
va_start(ap, text);
vfscanf(file, text, ap);
va_end(ap);
return 0;
}