Cthulhu  0.2.10
Cthulhu compiler collection
buffer.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 #pragma once
3 
4 // for sizeof(io_t)
5 #include "io/impl.h" // IWYU pragma: export
6 
8 
11 
14 typedef struct io_buffer_impl_t
15 {
17  char *data;
18 
20  size_t used;
21 
23  size_t total;
24 
26  size_t offset;
28 
29 #define IO_BUFFER_SIZE (sizeof(io_buffer_impl_t) + sizeof(io_t))
30 
32 
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
a read/write in memory file
Definition: buffer.h:15
size_t used
used data
Definition: buffer.h:20
size_t total
total size of data
Definition: buffer.h:23
size_t offset
current offset in data
Definition: buffer.h:26
char * data
stored data
Definition: buffer.h:17