defc1ea340
text data bss dec hex filename 808035 611 6868 815514 c719a busybox_old 804472 611 6868 811951 c63af busybox_unstripped
13 lines
293 B
C
13 lines
293 B
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
#include "unarchive.h"
|
|
|
|
void FAST_FUNC data_skip(archive_handle_t *archive_handle)
|
|
{
|
|
archive_handle->seek(archive_handle, archive_handle->file_header->size);
|
|
}
|