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

18 lines
193 B
C

#include <stddef.h>
#include <stdint.h>
#include "../struct.h"
struct file_wcistream
{
struct wcistream super;
int fd;
uint8_t buffer[4096];
size_t i, n;
};