mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
279 B
16 lines
279 B
|
15 years ago
|
#include <string.h>
|
||
|
|
#include <libgen.h>
|
||
|
|
|
||
|
|
char *dirname(char *s)
|
||
|
|
{
|
||
|
|
size_t i;
|
||
|
|
if (!s || !*s || !strchr(s, '/')) return ".";
|
||
|
|
i = strlen(s)-1;
|
||
|
|
for (; i&&s[i]=='/'; i--);
|
||
|
|
for (; i&&s[i-1]!='/'; i--);
|
||
|
|
for (; i&&s[i-1]=='/'; i--);
|
||
|
|
if (!i && *s=='/') i++;
|
||
|
|
s[i] = 0;
|
||
|
|
return s;
|
||
|
|
}
|