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 <sys/types.h>
|
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
|
|
|
|
2006-03-06 20:47:33 +00:00
|
|
|
void data_align(archive_handle_t *archive_handle, const unsigned short boundary)
|
2002-09-25 02:47:48 +00:00
|
|
|
{
|
2002-11-03 14:05:15 +00:00
|
|
|
const unsigned short skip_amount = (boundary - (archive_handle->offset % boundary)) % boundary;
|
|
|
|
|
|
|
|
archive_handle->seek(archive_handle, skip_amount);
|
|
|
|
archive_handle->offset += skip_amount;
|
2002-09-25 02:47:48 +00:00
|
|
|
}
|