You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ondřej Hruška
73e0d601db
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
circbuf.c | 2 years ago | |
circbuf.h | 2 years ago |
README.md
Circular buffer (enhanced)
This variant of a circular buffer uses static allocation.
This buffer is not meant for producer-consumer synchronization, it's geared towards use cases where the buffer is accessed from a single thread, such as to keep a running average.
The full capacity is utilized thanks to internally storing its length. The buffer has both front and back sets of push/pop/peek functions, as well as a way to iterate and mutate its elements.
See the header for usage details.