urbit/j/3/dor.c

53 lines
962 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/dor.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_dor(
u3_atom a,
u3_atom b)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
if ( u3_yes == u3_cr_sing(a, b) ) {
return u3_yes;
2013-09-29 00:21:18 +04:00
}
else {
2014-09-06 00:13:24 +04:00
if ( u3_yes == u3ud(a) ) {
if ( u3_yes == u3ud(b) ) {
return u3_cqa_lth(a, b);
2013-09-29 00:21:18 +04:00
}
else {
2014-09-06 00:13:24 +04:00
return u3_yes;
2013-09-29 00:21:18 +04:00
}
}
else {
2014-09-06 00:13:24 +04:00
if ( u3_yes == u3ud(b) ) {
return u3_no;
2013-09-29 00:21:18 +04:00
}
else {
2014-09-06 00:13:24 +04:00
if ( u3_yes == u3_cr_sing(u3h(a), u3h(b)) ) {
return u3_cqc_dor(u3t(a), u3t(b));
2013-09-29 00:21:18 +04:00
}
2014-09-06 00:13:24 +04:00
else return u3_cqc_dor(u3h(a), u3h(b));
2013-09-29 00:21:18 +04:00
}
}
}
}
2014-09-06 00:13:24 +04:00
u3_noun
u3_cwc_dor(
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) ) {
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_dor(a, b);
2013-09-29 00:21:18 +04:00
}
}