aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-04-11 01:37:03 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-04-11 01:37:03 +0000
commit9d53c8ab74ecb2be62ebf4c61350b842787cc6b9 (patch)
treec351bc7377b948c358f0f9c7da1f225b6f349ee3 /include
parent93ffa950bfd349c8d8ff40f1f862f2b7483584d4 (diff)
downloadbusybox-w32-9d53c8ab74ecb2be62ebf4c61350b842787cc6b9.tar.gz
busybox-w32-9d53c8ab74ecb2be62ebf4c61350b842787cc6b9.tar.bz2
busybox-w32-9d53c8ab74ecb2be62ebf4c61350b842787cc6b9.zip
Move get_ar_headers to libbb, make dpkg_deb.c independent of ar.c
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 6133b19d3..649fe11c1 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -215,4 +215,16 @@ int klogctl(int type, char * b, int len);
215char *xgetcwd(char *cwd); 215char *xgetcwd(char *cwd);
216char *concat_path_file(const char *path, const char *filename); 216char *concat_path_file(const char *path, const char *filename);
217 217
218typedef struct ar_headers_s {
219 char *name;
220 off_t size;
221 uid_t uid;
222 gid_t gid;
223 mode_t mode;
224 time_t mtime;
225 off_t offset;
226 struct ar_headers_s *next;
227} ar_headers_t;
228extern ar_headers_t get_ar_headers(int srcFd);
229
218#endif /* __LIBBB_H__ */ 230#endif /* __LIBBB_H__ */