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

/* OpenBSD needs that for EOVERFLOW. wtfbsdseriously */
#define _BSD_SOURCE

#include <errno.h>
#include <skalibs/uint32.h>
#include <skalibs/bitarray.h>
#include <skalibs/biguint.h>

int bu_scan (char const *s, unsigned int len, uint32 *x, unsigned int xn, unsigned int zeron)
{
  register unsigned int n = bitarray_div8(zeron) ;
  if (xn < n) return (errno = EOVERFLOW, 0) ;
  bu_scan_internal(s, len, x) ;
  bu_zero(x + n, xn - n) ;
  return 1 ;
}