urbit/j/b/scag.c

53 lines
824 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
2014-11-06 22:13:57 +03:00
u3qb_scag(
2014-09-06 00:13:24 +04:00
u3_atom a,
u3_noun b)
2014-05-27 04:33:41 +04:00
{
2014-11-06 03:20:01 +03:00
if ( !_(u3a_is_cat(a)) ) {
return u3m_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-12-12 02:50:20 +03:00
return u3_nul;
2014-05-27 04:33:41 +04:00
while ( i_w ) {
2014-11-05 04:18:47 +03:00
if ( c3n == u3du(b) ) {
2014-09-06 00:13:24 +04:00
return u3_nul;
2014-05-27 04:33:41 +04:00
}
2014-12-12 02:50:20 +03:00
acc = u3i_cell( u3h(b), acc );
b = u3t(b);
i_w--;
2014-05-27 04:33:41 +04:00
}
2014-11-06 22:13:57 +03:00
return u3kb_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
2014-11-06 22:13:57 +03:00
u3wb_scag(
2014-09-06 00:13:24 +04:00
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-11-18 00:56:51 +03:00
if ( (c3n == u3r_mean(cor, u3x_sam_2, &a, u3x_sam_3, &b, 0)) ||
2014-11-05 04:18:47 +03:00
(c3n == u3ud(a)) )
2014-05-27 04:33:41 +04:00
{
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__exit);
2014-05-27 04:33:41 +04:00
} else {
2014-11-06 22:13:57 +03:00
return u3qb_scag(a, b);
2014-05-27 04:33:41 +04:00
}
}