server 0.0.1
basicserverinfrastructure

src/interface/stream_reader.c

Go to the documentation of this file.
00001 #include "class.h"
00002 #include "interface/stream_reader.h"
00003 
00004 const struct interface i_StreamReader = {
00005         "streamReader",
00006         1
00007 };
00008 
00009 size_t
00010 streamReaderRead(void * object, int fd)
00011 {
00012         size_t ret;
00013 
00014         RETCALL(object, StreamReader, read, ret, fd);
00015 
00016         return ret;
00017 }
00018 
00019 // vim: set ts=4 sw=4:
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines