mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-30 17:29:43 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
13 lines
205 B
C
13 lines
205 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include "libstream.h"
|
|
|
|
int stream_lseek(stream_t *stream, long offset, int whence)
|
|
{
|
|
return stream->fs.lseek(stream->file, offset, whence);
|
|
}
|