On Thu, 28 Aug 2003 Dave_Belanger@cimmetry.com wrote:
(See attached file: patch_splitpath)
+ if (swapSlashes && dir) { + /* convert backslashes back to slashes */ + for (ptr = (char*)dir; *ptr; ++ptr) { + if ('\' == *ptr) { + *ptr = '/'; + } + } + + }
Can you please try to use the same formatting style (indentation & bracket placement) as the one in the rest of the file? Otherwise the file becomes hard to read if we switch between the styles too freely.