shrub/j/3/hor.c

48 lines
856 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/hor.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-04 01:33:18 +04:00
u2_noun
u2_cqc_hor(u2_noun a,
u2_noun b)
2013-09-29 00:21:18 +04:00
{
2014-08-20 05:39:48 +04:00
if ( u2_yes == u2ud(a) ) {
if ( u2_yes == u2ud(b) ) {
2014-09-03 07:36:29 +04:00
return u2_cqc_gor(a, b);
2013-09-29 00:21:18 +04:00
} else {
return u2_yes;
}
} else {
2014-08-20 05:39:48 +04:00
if ( u2_yes == u2ud(b) ) {
2013-09-29 00:21:18 +04:00
return u2_no;
}
else {
2014-08-20 05:39:48 +04:00
u2_noun h_a = u2h(a);
u2_noun h_b = u2h(b);
2013-09-29 00:21:18 +04:00
2014-08-20 05:39:48 +04:00
if ( u2_yes == u2_cr_sing(h_a, h_b) ) {
2014-09-03 07:36:29 +04:00
return u2_cqc_gor(u2t(a), u2t(b));
2013-09-29 00:21:18 +04:00
} else {
2014-09-03 07:36:29 +04:00
return u2_cqc_gor(h_a, h_b);
2013-09-29 00:21:18 +04:00
}
}
}
}
2014-09-04 01:33:18 +04:00
u2_noun
u2_cwc_hor(u2_noun cor)
2013-09-29 00:21:18 +04:00
{
u2_noun a, b;
2014-08-20 05:39:48 +04:00
if ( (u2_no == u2_cr_mean(cor, u2_cv_sam_2, &a, u2_cv_sam_3, &b, 0)) ) {
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-03 07:36:29 +04:00
return u2_cqc_hor(a, b);
2013-09-29 00:21:18 +04:00
}
}