urbit/j/2/scag.c

53 lines
827 B
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"
2014-09-04 07:10:43 +04:00
2014-05-27 04:33:41 +04:00
/* functions
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cqb_scag(
u3_atom a,
u3_noun b)
2014-05-27 04:33:41 +04:00
{
2014-11-05 03:53:07 +03:00
if ( u3_ne(u3_ca_is_cat(a)) ) {
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__fail);
2014-05-27 04:33:41 +04:00
}
else {
2014-09-06 00:13:24 +04:00
u3_noun acc;
2014-05-27 04:33:41 +04:00
c3_w i_w = a;
if ( !i_w )
2014-09-06 00:13:24 +04:00
return u3_nul;
2014-05-27 04:33:41 +04:00
while ( i_w ) {
2014-09-06 00:13:24 +04:00
if ( u3_no == u3du(b) ) {
return u3_nul;
2014-05-27 04:33:41 +04:00
}
2014-09-06 00:13:24 +04:00
acc = u3_ci_cell( u3h(b), acc );
b = u3t(b);
2014-05-27 04:33:41 +04:00
i_w--;
}
2014-09-06 00:13:24 +04:00
return u3_ckb_flop(acc);
2014-05-27 04:33:41 +04:00
}
}
2014-09-04 01:33:18 +04:00
2014-09-06 00:13:24 +04:00
u3_noun
u3_cwb_scag(
u3_noun cor)
2014-05-27 04:33:41 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a, b;
2014-05-27 04:33:41 +04:00
2014-09-06 00:13:24 +04:00
if ( (u3_no == u3_cr_mean(cor, u3_cv_sam_2, &a, u3_cv_sam_3, &b, 0)) ||
(u3_no == u3ud(a)) )
2014-05-27 04:33:41 +04:00
{
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
2014-05-27 04:33:41 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqb_scag(a, b);
2014-05-27 04:33:41 +04:00
}
}