mirror of
https://github.com/urbit/shrub.git
synced 2024-12-18 15:55:00 +03:00
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/* j/1/add.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
#include "../pit.h"
|
|
|
|
/* functions
|
|
*/
|
|
u2_weak // transfer
|
|
j2_mbc(Pt1, add)(
|
|
u2_atom a, // retain
|
|
u2_atom b) // retain
|
|
{
|
|
mpz_t a_mp, b_mp;
|
|
|
|
u2_cr_mp(a_mp, a);
|
|
u2_cr_mp(b_mp, b);
|
|
|
|
mpz_add(a_mp, a_mp, b_mp);
|
|
mpz_clear(b_mp);
|
|
|
|
return u2_ci_mp(a_mp);
|
|
}
|
|
u2_weak // transfer
|
|
j2_mb(Pt1, add)(
|
|
u2_noun cor) // retain
|
|
{
|
|
u2_noun a, b;
|
|
|
|
if ( (u2_no == u2_cr_mean(cor, u2_cv_sam_2, &a, u2_cv_sam_3, &b, 0)) ||
|
|
(u2_no == u2ud(a)) ||
|
|
(u2_no == u2ud(b)) )
|
|
{
|
|
return u2_cm_bail(c3__exit);
|
|
} else {
|
|
return j2_mbc(Pt1, add)(a, b);
|
|
}
|
|
}
|
|
|
|
/* structures
|
|
*/
|
|
u2_ho_jet
|
|
j2_mbj(Pt1, add)[] = {
|
|
{ ".2", c3__lite, j2_mb(Pt1, add), u2_jet_live, u2_none, u2_none },
|
|
{ }
|
|
};
|