lighttpd1.4/src/stream.h

15 lines
207 B
C

#ifndef _STREAM_H_
#define _STREAM_H_
#include "first.h"
typedef struct {
char *start;
off_t size;
int mapped;
} stream;
int stream_open(stream *f, const char *fn);
int stream_close(stream *f);
#endif