2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-03 19:35:15 +05:30
|
|
|
/*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-11-03 19:35:15 +05:30
|
|
|
*/
|
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
#include "libbb.h"
|
2002-11-03 19:35:15 +05:30
|
|
|
#include "unarchive.h"
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC data_align(archive_handle_t *archive_handle, unsigned boundary)
|
2002-09-25 08:17:48 +05:30
|
|
|
{
|
2008-02-16 18:48:17 +05:30
|
|
|
unsigned skip_amount = (boundary - (archive_handle->offset % boundary)) % boundary;
|
2002-11-03 19:35:15 +05:30
|
|
|
|
|
|
|
archive_handle->seek(archive_handle, skip_amount);
|
|
|
|
archive_handle->offset += skip_amount;
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|