This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | pathDelim pathDelimUnix |
#define | _abk_cpd convertPathDelimsToUnix |
Functions | |
char * | convertPathDelimsToWindows (char *) |
char * | convertPathDelimsToUnix (char *) |
Variables | |
const char | pathDelimWindows = '\\' |
author="Igor Markov, July 31, 1997" | |
const char | pathDelimUnix = '/' |
|
Definition at line 54 of file pathDelims.h. |
|
Definition at line 53 of file pathDelims.h. Referenced by BaseFileName(), and SgnPartOfFileName(). |
|
Definition at line 55 of file pathDelims.cxx. References pathDelimUnix, and pathDelimWindows.
00056 { 00057 if (fileName==NULL) return NULL; 00058 unsigned i, len=strlen(fileName); 00059 for(i=0;i<len;i++) 00060 if (fileName[i]==pathDelimWindows) fileName[i]=pathDelimUnix; 00061 return fileName; 00062 } |
|
Definition at line 46 of file pathDelims.cxx. References pathDelimUnix, and pathDelimWindows.
00047 { 00048 if (fileName==NULL) return NULL; 00049 unsigned i, len=strlen(fileName); 00050 for(i=0;i<len;i++) 00051 if (fileName[i]==pathDelimUnix) fileName[i]=pathDelimWindows; 00052 return fileName; 00053 } |
|
Definition at line 47 of file pathDelims.h. Referenced by convertPathDelimsToUnix(), and convertPathDelimsToWindows(). |
|
author="Igor Markov, July 31, 1997"
Definition at line 46 of file pathDelims.h. Referenced by convertPathDelimsToUnix(), and convertPathDelimsToWindows(). |