blob: 1358aca1ebf2cc8699c8b25f2cd8811b179b4f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ISC license. */
/* OpenBSD needs that for EOVERFLOW. wtfbsdseriously */
#define _BSD_SOURCE
#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 ;
}
|