It is written in C (I think), trying to check command line params:
char szListStores[12];
strcpy_s(szListStores,12,"/LISTSTORES");
if(argc==2)
{
if(0!=strcmp(_strupr(argv[1]),szListStores))
return -1;
ListStores();
printf("\n");
}
I get warnings that it is unsafe to use _strupr and I...