aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
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__ */