mirror of
https://github.com/urbit/shrub.git
synced 2024-12-18 15:55:00 +03:00
64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
/* j/4/gas.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
#include "../pit.h"
|
|
|
|
/* functions
|
|
*/
|
|
u2_weak // transfer
|
|
j2_mcc(Pt4, by, gas)(
|
|
u2_noun a, // retain
|
|
u2_noun b) // retain
|
|
{
|
|
if ( u2_nul == b ) {
|
|
return u2k(a);
|
|
}
|
|
else {
|
|
if ( u2_no == u2du(b) ) {
|
|
return u2_cm_bail(c3__exit);
|
|
} else {
|
|
u2_noun i_b = u2h(b);
|
|
u2_noun t_b = u2t(b);
|
|
|
|
if ( u2_no == u2du(i_b) ) {
|
|
return u2_cm_bail(c3__exit);
|
|
} else {
|
|
u2_noun pi_b = u2h(i_b);
|
|
u2_noun qi_b = u2t(i_b);
|
|
u2_noun c;
|
|
|
|
if ( u2_none == (c = j2_mcc(Pt4, by, put)(a, pi_b, qi_b)) ) {
|
|
return u2_cm_bail(c3__exit);
|
|
} else {
|
|
u2_noun d = j2_mcc(Pt4, by, gas)(c, t_b);
|
|
|
|
u2z(c);
|
|
return d;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
u2_weak // transfer
|
|
j2_mc(Pt4, by, gas)(
|
|
u2_noun cor) // retain
|
|
{
|
|
u2_noun a, b;
|
|
|
|
if ( u2_no == u2_cr_mean(cor, u2_cv_sam, &b, u2_cv_con_sam, &a, 0) ) {
|
|
return u2_cm_bail(c3__exit);
|
|
} else {
|
|
return j2_mcc(Pt4, by, gas)(a, b);
|
|
}
|
|
}
|
|
|
|
/* structures
|
|
*/
|
|
u2_ho_jet
|
|
j2_mcj(Pt4, by, gas)[] = {
|
|
{ ".2", c3__lite, j2_mc(Pt4, by, gas), Tier4, u2_none, u2_none },
|
|
{ }
|
|
};
|