I am trying to port an old application from unix to win32.
The program was called C++ Sim
In that program, it uses iostream.h extensively which doesn't conform to
the new C++ standard library.
The functions that I found no longer supported are
1) setb()
2) base()
3) allocate()
4) ebuf()
and so on.
What is the quickest way to convert all these calls and make them conform to the new C++ standard library?
Thanks
Jack