14 lines
153 B
C
14 lines
153 B
C
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "../struct.h"
|
|
|
|
struct string_istream
|
|
{
|
|
struct istream super;
|
|
|
|
const uint8_t* moving;
|
|
};
|
|
|
|
|