urbit/j/3/mas.c

47 lines
696 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/mas.c
**
** This file is in the public domain.
*/
#include "all.h"
2014-09-04 07:10:43 +04:00
2013-09-29 00:21:18 +04:00
/* functions
*/
2014-09-06 00:13:24 +04:00
u3_noun
2014-10-24 04:35:26 +04:00
u3_cqc_mas(u3_atom a)
2013-09-29 00:21:18 +04:00
{
c3_w b_w;
2014-09-06 00:13:24 +04:00
u3_atom c, d, e, f;
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
b_w = u3_cr_met(0, a);
2013-09-29 00:21:18 +04:00
if ( b_w < 2 ) {
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
}
2013-09-29 00:21:18 +04:00
else {
2014-09-06 00:13:24 +04:00
c = u3_cqc_bex((b_w - 1));
d = u3_cqc_bex((b_w - 2));
e = u3_cqa_sub(a, c);
f = u3_cqc_con(e, d);
2014-09-06 00:13:24 +04:00
u3z(c);
u3z(d);
u3z(e);
2013-09-29 00:21:18 +04:00
return f;
}
}
2014-09-06 00:13:24 +04:00
u3_noun
2014-10-24 04:35:26 +04:00
u3_cwc_mas(u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a;
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
if ( (u3_none == (a = u3_cr_at(u3_cv_sam, cor))) ||
(u3_no == u3ud(a)) )
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqc_mas(a);
2013-09-29 00:21:18 +04:00
}
}