blob: 1a7f16496955241e8404f590d108c403bd5fc497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ISC license. */
/* OpenBSD needs that for EOVERFLOW. wtfbsdseriously */
#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif
#include <stdint.h>
#include <errno.h>
#include <skalibs/biguint.h>
int bu_addc (uint32_t *c, unsigned int cn, uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn, int carry)
{
unsigned int i = 0 ;
for (; i < cn ; i++)
{
uint32_t ai = (i < an) ? a[i] : 0 ;
uint32_t bi = (i < bn) ? b[i] : 0 ;
uint32_t ci = ai + bi + carry ;
carry = (carry || bi) && (ci < ai) ;
c[i] = ci ;
}
return carry ? (errno = EOVERFLOW, 0) : 1 ;
}
|