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

14 lines
153 B
C

#include <stddef.h>
#include <stdint.h>
#include "../struct.h"
struct string_istream
{
struct istream super;
const uint8_t* moving;
};