Howdy,
I need to print given path to a file. The problem is that my app is platform independent -> I can get a Win32 style path:
C:\foo\bar.dat
.
The problem is with printing single backslashes '\' -> single char converts to "\char" style. I need to convert it somehow to proper style "\\" in order to print it. I was thinking about some lib function (dir.h, sys_*, etc.), but I had no luck.
Any help appreciated! :)