Return to stream.h CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / src |
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