summaryrefslogtreecommitdiff
path: root/i/pc104/initrd/conf/busybox/archival/libunarchive/data_align.c
blob: 946c94d0d9bf6a5fa1d8ba70b86923ecd1ec9f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* vi: set sw=4 ts=4: */
/*
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */

#include <sys/types.h>

#include "libbb.h"
#include "unarchive.h"

void data_align(archive_handle_t *archive_handle, const unsigned short boundary)
{
	const unsigned short skip_amount = (boundary - (archive_handle->offset % boundary)) % boundary;

	archive_handle->seek(archive_handle, skip_amount);
	archive_handle->offset += skip_amount;
}