From fca80df9e638a7d68147d91cbffda95aed96ab5c Mon Sep 17 00:00:00 2001 From: dzwdz Date: Thu, 23 Feb 2023 20:07:59 +0100 Subject: build: don't -Isrc/ in user code --- src/shared/container/ring.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/shared/container/ring.h (limited to 'src/shared/container/ring.h') diff --git a/src/shared/container/ring.h b/src/shared/container/ring.h deleted file mode 100644 index dbaf331..0000000 --- a/src/shared/container/ring.h +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once -#include -#include - -typedef struct { - char *buf; - size_t capacity; - size_t _head, _tail; -} ring_t; - -/** Returns amount of bytes stored in the buffer. */ -size_t ring_used(ring_t*); -/** Returns amount of space left in the buffer. */ -size_t ring_avail(ring_t*); - -void ring_put(ring_t*, const 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); -- cgit v1.2.3