blob: 10f59b94e304967c8a0680bb0e9dd6f8904f7726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ISC license. */
/* OpenBSD needs that for EOVERFLOW. wtfbsdseriously */
#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif
#include <errno.h>
#include <skalibs/biguint.h>
int bu_copy (uint32_t *b, unsigned int bn, uint32_t const *a, unsigned int an)
{
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 ;
}
|