51e193d28b
- Remove newline caching - limit petal sizes - make public facing api use points only - fix iterators (chunk & line)
10 lines
187 B
C
10 lines
187 B
C
#pragma once
|
|
|
|
#include "pch.h"
|
|
|
|
struct Buffer {
|
|
virtual const char *read(uint32_t pos, uint32_t *out_len) = 0;
|
|
virtual inline uint32_t length() = 0;
|
|
virtual ~Buffer() = default;
|
|
};
|