summaryrefslogtreecommitdiff
path: root/src/shared/container/ring.h
blob: bc978ced0745d68b48be0c95ae4aa7185626e388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
#include <stddef.h>
#include <stdint.h>

typedef struct {
	char *buf;
	size_t capacity;
	size_t _head, _tail;
} ring_t;

size_t	ring_size(ring_t*);

void	ring_put(ring_t*, void*, size_t);
void	ring_put1b(ring_t*, uint8_t);

size_t	ring_get(ring_t*, void*, size_t);

/** Consumes up to `len` bytes, and returns a pointer to the buffer where it's stored.
 * Not thread-safe. */
void*	ring_contig(ring_t*, size_t *len);