summaryrefslogtreecommitdiff
path: root/src/libbiguint/bu_copy.c
blob: aff6e51cccf7b0643c54a4ee71535ef5c64d9bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ISC license. */

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

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

int bu_copy (uint32 *b, unsigned int bn, uint32 const *a, unsigned int an)
{
  register unsigned int alen = bu_len(a, an) ;
  if (bn < alen)
  {
    bu_copy_internal(b, a, bn) ;
    return (errno = EOVERFLOW, 0) ;
  }
  bu_copy_internal(b, a, alen) ;
  bu_zero(b + alen, bn - alen) ;
  return 1 ;
}