diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-09-18 18:55:44 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-09-18 18:55:44 +0000 |
commit | 3534b428629be185e096be99e3bd5fdfe32d5544 (patch) | |
tree | 210ef3198ed66bc7f7b7bf6a85e4579f455e5a36 /src/libbiguint/bu_copy.c | |
download | skalibs-3534b428629be185e096be99e3bd5fdfe32d5544.tar.xz |
initial commit with rc for skalibs-2.0.0.0
Diffstat (limited to 'src/libbiguint/bu_copy.c')
-rw-r--r-- | src/libbiguint/bu_copy.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/libbiguint/bu_copy.c b/src/libbiguint/bu_copy.c new file mode 100644 index 0000000..1358aca --- /dev/null +++ b/src/libbiguint/bu_copy.c @@ -0,0 +1,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 ; +} |