This source file includes following definitions.
- strcmp
char dir_namespac[] = "$Id: namespac.hpp,v 1.2 2011/03/25 21:47:31 doug Exp $";
if(0 == strcmp("NAMESPACE",strupr(g_szOpcode))) {
char szNSin[DEFAULT_STRSIZE];
char szNSout[DEFAULT_STRSIZE];
int index = 0;
g_iErrorNo ^= ERROR_UNKOP;
g_iLineType = TYPE_DIR;
if(0 < strlen(g_szParms)) {
strcpy(szNSin,g_szParms);
for(int o=0;o<strlen(strupr(szNSin));o++) {
if( g_pCEval->bIsNumeric(szNSin[o]) ||
g_pCEval->bIsAlpha(szNSin[o]) ) {
szNSout[index++] = tolower(szNSin[o]);
}
}
szNSout[index++] = 0;
if(0 < strlen(szNSout)) {
g_pCSymbols->mynamespace(szNSout);
} else {
g_iErrorNo |= ERROR_INVNS;
}
} else {
g_iErrorNo |= ERROR_NOPARM;
}
}