CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
bufring_private.h
1#include "bufring.h"
2
3// Returns how much data can be read contiguously from the head of the ring buffer.
4// This is an internal function intended for use by the socket code only.
5size_t _bufringReadContigAvail(_In_ BufRing* ring);
6
7// Tries to steal the head buffer if it is 0-aligned. This is an internal function intended
8// for use by the socket code only.
9Buffer _bufringStealHead(_Inout_ BufRing* ring);
Ring buffer implementation for efficient streaming I/O.