aboutsummaryrefslogtreecommitdiff
path: root/lib/stream/seek.c
blob: 0191b99537fa8ab5201e39d2b7e24d6ae261ed9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* ****************************************************************************
 * stream/seek.c -- move in a stream.
 * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
 *
 * This file is part of libcasio.
 * libcasio is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 3.0 of the License,
 * or (at your option) any later version.
 *
 * libcasio is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with libcasio; if not, see <http://www.gnu.org/licenses/>.
 * ************************************************************************* */
#include "stream.h"

/**
 *	casio_seek:
 *	Move in a stream.
 *
 *	@arg	stream		the stream to move into.
 *	@arg	offset		the offset.
 *	@arg	whence		the whence.
 *	@return				the error code (0 if ok).
 */

int CASIO_EXPORT casio_seek(casio_stream_t *stream, casio_off_t offset,
	casio_whence_t whence)
{
	int err; casio_stream_seek_t *s;

	failure(whence != CASIO_SEEK_SET && whence != CASIO_SEEK_CUR
	 && whence != CASIO_SEEK_END, casio_error_op)
	s = getcb(stream, seek);
	if (!s) return (casio_error_op);
	err = (*s)(stream->casio_stream_cookie, &offset, whence);
	failure(err, err)

	stream->casio_stream_offset = offset;
	err = 0;
fail:
	stream->casio_stream_lasterr = err;
	return (err);
}

/**
 *	casio_tell:
 *	Tell the position in a stream.
 *
 *	@arg	stream		the stream to get the position of.
 *	@return				the position.
 */

casio_off_t CASIO_EXPORT casio_tell(casio_stream_t *stream)
{
	return (stream->casio_stream_offset);
}