18 lines
189 B
C
18 lines
189 B
C
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "../struct.h"
|
|
|
|
struct file_istream
|
|
{
|
|
struct istream super;
|
|
|
|
int fd;
|
|
|
|
uint8_t buffer[4096];
|
|
|
|
size_t i, n;
|
|
};
|
|
|
|
|