projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f429bac
)
This isnt used anymore, replaced by seek_sub_file() in ./libbb/deb_extract.c
author
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 15 Jun 2001 03:13:00 +0000
(
03:13
-0000)
committer
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 15 Jun 2001 03:13:00 +0000
(
03:13
-0000)
libbb/seek_ared_file.c
[deleted file]
patch
|
blob
|
history
diff --git
a/libbb/seek_ared_file.c
b/libbb/seek_ared_file.c
deleted file mode 100644
(file)
index
67c789d
..0000000
--- a/
libbb/seek_ared_file.c
+++ /dev/null
@@
-1,17
+0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include "libbb.h"
-
-extern int seek_ared_file(FILE *in_file, ar_headers_t *headers, const char *tar_gz_file)
-{
- /* find the headers for the specified .tar.gz file */
- while (headers->next != NULL) {
- if (strcmp(headers->name, tar_gz_file) == 0) {
- fseek(in_file, headers->offset, SEEK_SET);
- return(EXIT_SUCCESS);
- }
- headers = headers->next;
- }
-
- return(EXIT_FAILURE);
-}
\ No newline at end of file