diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 12 |
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); | |||
215 | char *xgetcwd(char *cwd); | 215 | char *xgetcwd(char *cwd); |
216 | char *concat_path_file(const char *path, const char *filename); | 216 | char *concat_path_file(const char *path, const char *filename); |
217 | 217 | ||
218 | typedef 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; | ||
228 | extern ar_headers_t get_ar_headers(int srcFd); | ||
229 | |||
218 | #endif /* __LIBBB_H__ */ | 230 | #endif /* __LIBBB_H__ */ |