hush/archival/libunarchive/data_align.c

18 lines
457 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
2007-05-31 22:42:12 +00:00
//#include <sys/types.h>
2002-09-25 02:47:48 +00:00
#include "libbb.h"
#include "unarchive.h"
2002-09-25 02:47:48 +00:00
void data_align(archive_handle_t *archive_handle, const unsigned short boundary)
2002-09-25 02:47:48 +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
}