mirror of
https://github.com/urbit/shrub.git
synced 2024-12-17 07:14:52 +03:00
43 lines
1.0 KiB
C
43 lines
1.0 KiB
C
/* j/2/weld.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
#include "../pit.h"
|
|
|
|
/* functions
|
|
*/
|
|
u2_weak // transfer
|
|
j2_mbc(Pt2, weld)(u2_noun a, // retain
|
|
u2_noun b) // retain
|
|
{
|
|
if ( 0 == a ) {
|
|
return u2k(b);
|
|
}
|
|
else if ( u2_no == u2du(a) ) {
|
|
return u2_cm_bail(c3__exit);
|
|
}
|
|
else {
|
|
return u2nc(u2k(u2h(a)), j2_mbc(Pt2, weld)(u2t(a), b));
|
|
}
|
|
}
|
|
u2_noun // transfer
|
|
j2_mb(Pt2, weld)(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) ) {
|
|
return u2_cm_bail(c3__exit);
|
|
} else {
|
|
return j2_mbc(Pt2, weld)(a, b);
|
|
}
|
|
}
|
|
|
|
/* structures
|
|
*/
|
|
u2_ho_jet
|
|
j2_mbj(Pt2, weld)[] = {
|
|
{ ".2", c3__lite, j2_mb(Pt2, weld), Tier2, u2_none, u2_none },
|
|
{ }
|
|
};
|