O.S: Win98
Compiler: Dev-C++ version 4
Level: keen newbie

Hello,

Trying to replicate the ignore and getline function in VC++ within API application (not MFC). I would appreciate any pointers. I seem to be hitting my head against a brick wall on this one.


do
{
fin.ignore(5,':') ;
fin.getline(Buffer,255);
fout << Buffer << "\n" ;
}

Thanks

hmm