- Initial checkin of the freebios2 tree
[coreboot.git] / src / include / stream / read_bytes.h
1 #ifndef STREAM_READ_BYTES_H
2 #define STREAM_READ_BYTES_H
3
4 #include <stdint.h>
5
6 typedef long byte_offset_t;
7
8 extern int stream_init(void);
9 extern byte_offset_t stream_read(void *vdest, byte_offset_t count);
10 extern byte_offset_t stream_skip(byte_offset_t count);
11 extern void stream_fini(void);
12
13 #endif /* STREAM_READ_BYTES_H */