/* This program just tests where a file is found when using twPathname. Useful for debugging programs that need to use that function. */ #include #include int main(int argc, char* argv[]) { char filename[256]; for(;;) { printf("file: "); scanf("%s",filename); printf("file %s => ",filename); printf("%s\n",twPathname(filename,true)); } }