summaryrefslogtreecommitdiff
path: root/src/libstddjb/cbuffer_rseek.c
blob: 98532afa845a252ef403063e1a76d27688b68f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* ISC license. */

#include <sys/types.h>
#include <skalibs/cbuffer.h>

size_t cbuffer_rseek (cbuffer_t *b, size_t len)
{
  size_t max = cbuffer_len(b) ;
  if (len > max) len = max ;
  return cbuffer_RSEEK(b, len) ;
}