urbit/j/3/con.c

53 lines
1012 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/con.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
u3_cqc_con(u3_atom a,
u3_atom b)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
c3_w lna_w = u3_cr_met(5, a);
c3_w lnb_w = u3_cr_met(5, b);
2013-09-29 00:21:18 +04:00
if ( (lna_w == 0) && (lnb_w == 0) ) {
2014-08-20 05:39:48 +04:00
return 0;
2013-09-29 00:21:18 +04:00
} else {
2014-08-20 05:39:48 +04:00
c3_w len_w = c3_max(lna_w, lnb_w);
2014-09-06 00:13:24 +04:00
c3_w* sal_w = u3_ca_slab(len_w);
2013-09-29 00:21:18 +04:00
2014-08-20 05:39:48 +04:00
if ( 0 == sal_w ) {
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
}
else {
c3_w i_w;
2014-09-06 00:13:24 +04:00
u3_cr_chop(5, 0, lna_w, 0, sal_w, a);
2013-09-29 00:21:18 +04:00
for ( i_w = 0; i_w < lnb_w; i_w++ ) {
2014-09-06 00:13:24 +04:00
sal_w[i_w] |= u3_cr_word(i_w, b);
2013-09-29 00:21:18 +04:00
}
2014-09-06 00:13:24 +04:00
// return u3_ca_moot(sal_w);
return u3_ca_malt(sal_w);
2013-09-29 00:21:18 +04:00
}
}
}
2014-09-06 00:13:24 +04:00
u3_noun
u3_cwc_con(u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a, b;
2013-09-29 00:21:18 +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)) ||
(u3_no == u3ud(b)) )
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_con(a, b);
2013-09-29 00:21:18 +04:00
}
}