15 lines
192 B
C
15 lines
192 B
C
|
#ifndef _STREAM_H_
|
||
|
#define _STREAM_H_
|
||
|
|
||
|
#include "buffer.h"
|
||
|
|
||
|
typedef struct {
|
||
|
char *start;
|
||
|
off_t size;
|
||
|
} stream;
|
||
|
|
||
|
int stream_open(stream *f, buffer *fn);
|
||
|
int stream_close(stream *f);
|
||
|
|
||
|
#endif
|