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