/* $OpenXM: OpenXM/src/util/test.c,v 1.3 2003/11/24 11:47:35 takayama Exp $ */ #include #include "ox_pathfinder.h" sGC_malloc(int a) { return GC_malloc(a); } /* which command */ main(int argc,char *argv[]) { if (argc != 2) { fprintf(stderr,"test cmdname"); } printf("%s\n",getCommandPath(argv[1])); printf("%s (cyg) ==> %s (win)\n",argv[1],cygwinPathToWinPath(argv[1])); printf("%s (win) ==> %s (cyg)\n",argv[1],winPathToCygwinPath(argv[1])); }