diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-17 22:30:53 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-17 22:30:53 +0000 |
commit | fdffefb8032922ce7ffe4c00816072a8ff2148fc (patch) | |
tree | bc7313151a429c45d8bab8ad8b9dd32f4e51335f /src/libstddjb/dirname.c | |
parent | a896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (diff) | |
download | skalibs-fdffefb8032922ce7ffe4c00816072a8ff2148fc.tar.xz |
More types changes
New disize
Add size_t to the autotypes list
Delete redundant and replace-libc files
dev_t/ino_t pass
Big size_t pass
More things missing, still not operational yet
Diffstat (limited to 'src/libstddjb/dirname.c')
-rw-r--r-- | src/libstddjb/dirname.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/libstddjb/dirname.c b/src/libstddjb/dirname.c deleted file mode 100644 index 1def443..0000000 --- a/src/libstddjb/dirname.c +++ /dev/null @@ -1,19 +0,0 @@ -/* ISC license. */ - -/* MT-unsafe */ - -#include <skalibs/bytestr.h> -#include <skalibs/stralloc.h> -#include <skalibs/djbunix.h> - -char *dirname (char *s) -{ - static stralloc dirname_sa = STRALLOC_ZERO ; - static char dot0[2] = "." ; - char *dot = dot0 ; - if (!s) return dot ; - dirname_sa.len = 0 ; - if (!sadirname(&dirname_sa, s, str_len(s))) return 0 ; - if (!stralloc_0(&dirname_sa)) return 0 ; - return dirname_sa.s ; -} |