Update contrib.
1 // Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file converts a linux/tcl path to or from a windows path.
19 * convert to a windows path. required because PIPS
20 * is mostly posix but uses Windows paths and tcl uses unix paths internally (see FsJoinPath())
22 * inspired by TclWinNoBackslash()
27 #include "convertPathSlashes.h"
30 * Switch the separator chars inside a given string. both pointers can point
31 * to the same string or different strings.
33 * @param direction direction to convert to.
34 * @param pTo pointer of string to be converted.
35 * @param pFrom pointer to string to be converted from.
37 * @ret pTo pointer to last char+1 of converted buffer.
39 char* tclSymbianPathSlashConversion(direction, pTo, pFrom)
40 PathConversionDirection direction; // TO_TCL - '\\' to '/', TO_SYMBIAN - '/' to '\\'
41 char *pTo; // string to be converted.
42 const char *pFrom; // string to be converted.
47 if (direction == TO_TCL) {
56 for (; *pFrom != '\0'; pTo++, pFrom++) {
57 if (*pFrom == fromChar) {
69 * Copies the source path to the destination path and null
70 * terminates the destination string.
72 * @param direction direction to convert to.
73 * @param pTo pointer of string to be converted.
74 * @param pFrom pointer to string to be converted from.
76 // copy from fromStrPtr into a buffer supplied by toStrPtr.
77 void tclCopySymbianPathSlashConversion(direction, toStrPtr, fromStrPtr)
78 PathConversionDirection direction; // TO_TCL - '\\' to '/', TO_SYMBIAN - '/' to '\\'
79 char *toStrPtr; // string to be converted.
80 const char *fromStrPtr;// string to convert from.
88 pTo = tclSymbianPathSlashConversion(direction, pTo, pFrom);