lighttpd1.4/src/stream.h

15 lines
207 B
C
Raw Normal View History

#ifndef _STREAM_H_
#define _STREAM_H_
#include "first.h"
typedef struct {
char *start;
off_t size;
2016-04-18 03:37:40 +00:00
int mapped;
} stream;
int stream_open(stream *f, const char *fn);
int stream_close(stream *f);
#endif