You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
192 B
C
15 lines
192 B
C
19 years ago
|
#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
|