• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/src/
1#ifndef _STREAM_H_
2#define _STREAM_H_
3
4#include "buffer.h"
5
6typedef struct {
7	char *start;
8	off_t size;
9} stream;
10
11int stream_open(stream *f, buffer *fn);
12int stream_close(stream *f);
13
14#endif
15