summaryrefslogtreecommitdiff
path: root/src/libstddjb/siovec_bytein.c
blob: e9db87d003c5194e6d9b530cc52b674303b0ad1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ISC license. */

#include <skalibs/bytestr.h>
#include <skalibs/siovec.h>

unsigned int siovec_bytein (siovec_t const *v, unsigned int n, char const *sep, unsigned int seplen)
{
  unsigned int w = 0 ;
  unsigned int i = 0 ;
  for (; i < n ; i++)
  {
    register unsigned int pos = byte_in(v[i].s, v[i].len, sep, seplen) ;
    w += pos ;
    if (pos < v[i].len) break ;
  }
  return w ;
}