Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #define CMDLEN 256
00029 #define BUFSIZE 256
00030
00031 static const char *pcDevDelim = ":";
00032 #ifdef VMS
00033 static const char *pcFileDelim = "]";
00034 static const char *pcFileDelim0 = "[";
00035 static const char *pcFileDelim2 = ":";
00036 static const char *pcObjDelim = "/";
00037 static const char *pcObjDelimAlt = "\\";
00038 #endif
00039
00040 #ifdef _AIX
00041 static const char *pcFileDelim = "/";
00042 static const char *pcObjDelim = "/";
00043 static const char *pcObjDelimAlt = "\\";
00044 #endif
00045
00046 #ifdef Linux
00047 static const char *pcFileDelim = "/";
00048 static const char *pcObjDelim = "/";
00049 static const char *pcObjDelimAlt = "\\";
00050 #endif
00051
00052 #ifdef Lynx
00053 static const char *pcFileDelim = "/";
00054 static const char *pcObjDelim = "/";
00055 static const char *pcObjDelimAlt = "\\";
00056 #endif
00057
00058 #ifdef WIN32
00059 static const char *pcFileDelim = "\\";
00060 static const char *pcObjDelim = "\\";
00061 static const char *pcObjDelimAlt = "/";
00062 #endif
00063
00064 static const char *pcStar = "*";
00065 static const char *pcQM = "?";
00066 static const char *pcPerc = "%";
00067 static const char *pcOpt1 = "-";
00068 static const char *pcOpt2 = "/";
00069 static int iOptm = 1;
00070 static int iOpt = 1;
00071