aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-21 19:41:37 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-21 19:41:37 +0000
commit5f0f7d3428d4c8cc51fef8fcb4e7bf0ac616dab2 (patch)
tree3cdbaddffecc92649215fdc71a43b4e8e86b7ea3 /include/libbb.h
parentce5c25da381038fa6d2640a2f4aa77771ca2ee43 (diff)
downloadbusybox-w32-5f0f7d3428d4c8cc51fef8fcb4e7bf0ac616dab2.tar.gz
busybox-w32-5f0f7d3428d4c8cc51fef8fcb4e7bf0ac616dab2.tar.bz2
busybox-w32-5f0f7d3428d4c8cc51fef8fcb4e7bf0ac616dab2.zip
Rewrote mkdir (and touched lots of things in the process).
git-svn-id: svn://busybox.net/trunk/busybox@2873 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index e42ca9f2b..c83cb7e7c 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -243,6 +243,10 @@ extern FILE *gz_open(FILE *compressed_file, int *pid);
243 243
244extern struct hostent *xgethostbyname(const char *name); 244extern struct hostent *xgethostbyname(const char *name);
245 245
246char *dirname (const char *path);
247char *strdup_substr (const char *s, int start, int end);
248int make_directory (char *path, mode_t mode, int flags);
249
246#define CT_AUTO 0 250#define CT_AUTO 0
247#define CT_UNIX2DOS 1 251#define CT_UNIX2DOS 1
248#define CT_DOS2UNIX 2 252#define CT_DOS2UNIX 2