Files
bed/include/vase/buffer/buffer.h
T
syedm 51e193d28b Major changes to api and structure.
- Remove newline caching
- limit petal sizes
- make public facing api use points only
- fix iterators (chunk & line)
2026-08-02 11:07:04 +01:00

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