EMILE/libstream/stream_read.c

13 lines
205 B
C
Raw Normal View History

2005-11-21 23:55:56 +00:00
/*
*
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
2005-11-21 23:55:56 +00:00
*
*/
#include "libstream.h"
int stream_read(stream_t *stream, void *buf, size_t count)
{
return stream->fs.read(stream->fs.file, buf, count);
}