Enrico Forestieri <[EMAIL PROTECTED]> writes: > In the meantime I have discovered that a native Windows build > needs another small patch. Please, find it attached.
... > p = strrchr(arg, '/'); > >+#ifdef _WIN32 >+ if (!p) >+ p = strrchr(arg, '\\'); >+#endif Do you need to consider also mixed \ and / delimiters, as in "foo/bar\baz" ? Angus