lambda-calc-1/istream/file/struct.h
2025-01-20 13:40:51 -06:00

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;
};