EMILE/libstream/stream_read.c

13 lines
199 B
C
Raw Permalink Normal View History

2005-11-21 23:55:56 +00:00
/*
*
* (c) 2005 Laurent Vivier <Laurent@Vivier.EU>
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->file, buf, count);
2005-11-21 23:55:56 +00:00
}