mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-16 04:05:53 +00:00
13 lines
209 B
C
13 lines
209 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "libstream.h"
|
||
|
|
||
|
int stream_read(stream_t *stream, void *buf, size_t count)
|
||
|
{
|
||
|
return stream->fs.read(stream->fs.file, buf, count);
|
||
|
}
|