aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive/data_align.c
blob: 81594d87c8706e3110d3b721a01ad7cc2217e27e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* vi: set sw=4 ts=4: */
/*
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */

#include <sys/types.h>

#include <errno.h>
#include <unistd.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;

	return;
}