Annotation of embedaddon/lighttpd/src/stream.h, revision 1.1

1.1     ! misho       1: #ifndef _STREAM_H_
        !             2: #define _STREAM_H_
        !             3: 
        !             4: #include "buffer.h"
        !             5: 
        !             6: typedef struct {
        !             7:        char *start;
        !             8:        off_t size;
        !             9: } stream;
        !            10: 
        !            11: int stream_open(stream *f, buffer *fn);
        !            12: int stream_close(stream *f);
        !            13: 
        !            14: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>