mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
13 lines
215 B
C
13 lines
215 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include "libstream.h"
|
|
|
|
int stream_lseek(stream_t *stream, long offset, int whence)
|
|
{
|
|
return stream->fs.lseek(stream->fs.file, offset, whence);
|
|
}
|