2 * Originally written by Akira Kakuto <kakuto@fuk.kindai.ac.jp>
4 * WIN32 wrapper program replacing Unix symlinks such as,
5 * e.g., ofm2opl -> omfonts.
7 * EXEPROG must be defined in the Makefile as,
8 * e.g., -DEXEPROG=\"omfonts.exe\".
16 static int is_include_space(char *s
)
26 int main(int argc
, char *argv
[])
31 for(i
= 0; i
< argc
; i
++) {
32 if(is_include_space(argv
[i
])) {
33 p
= (char *)malloc(strlen(argv
[i
])+3);
42 return _spawnvp(_P_WAIT
, EXEPROG
, (const char * const *)argv
);