urbit/gen164/2/scag.c

60 lines
1.4 KiB
C
Raw Normal View History

2014-05-27 04:33:41 +04:00
/* j/2/scag.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_weak // transfer
j2_mbc(Pt2, scag)(u2_wire wir_r,
u2_atom a, // retain
u2_noun b) // retain
{
if ( !u2_fly_is_cat(a) ) {
return u2_bl_bail(wir_r, c3__fail);
}
else {
c3_w i_w = a;
u2_noun acc_w;
if ( a == 0 )
return u2_nul;
while ( i_w ) {
if ( u2_no == u2_dust(b) ) {
return u2_nul;
}
acc_w = u2_cn_cell( u2_h(b), acc_w );
b = u2_t(b);
i_w--;
}
acc_w = j2_mbc(Pt2, flop)(wir_r, acc_w);
return u2_rx(wir_r, acc_w);
}
}
u2_noun // transfer
j2_mb(Pt2, scag)(u2_wire wir_r,
u2_noun cor) // retain
{
u2_noun a, b;
if ( (u2_no == u2_mean(cor, u2_cv_sam_2, &a, u2_cv_sam_3, &b, 0)) ||
(u2_no == u2_stud(a)) )
{
return u2_bl_bail(wir_r, c3__exit);
} else {
return j2_mbc(Pt2, scag)(wir_r, a, b);
}
}
/* structures
*/
u2_ho_jet
j2_mbj(Pt2, scag)[] = {
2014-05-28 20:35:38 +04:00
{ ".2", c3__lite, j2_mb(Pt2, scag), u2_jet_dead, u2_none, u2_none },
2014-05-27 04:33:41 +04:00
{ }
};