Skip to content
Snippets Groups Projects
Commit 183a388e authored by rswindell's avatar rswindell
Browse files

Get rid of this file's local getdirname() in favor of the xpdev/dirwrap.c

function of the same name. The dirwrap version (now) behaves identically
when passed a pathname ending in a directory name (ending in a '/') but
differs when passed a pathname ending in a file name (not ending in a '/').
That should be okay.
parent 6ae79cfd
No related branches found
No related tags found
No related merge requests found
......@@ -148,26 +148,6 @@ char *insensitive_mask(char *mask)
#endif
}
char *getdirname(char *path)
{
char *p1;
char *p2;
p1=strrchr(path,'/');
#ifdef _WIN32
p2=strrchr(path,'\\');
if(p2 > p1)
p1=p2;
#endif
p2 = path;
if(p1 > path) {
for(p2=p1-1; p2>path && !IS_PATH_DELIM(*p2); p2--);
if(IS_PATH_DELIM(*p2) && *(p2+1))
p2++;
}
return(p2);
}
char **get_file_opt_list(char **fns, int files, int dirsonly, int root)
{
char **opts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment