shrub/gen164/4/in_has.c
2014-09-02 20:36:29 -07:00

57 lines
1.3 KiB
C

/* j/4/in_has.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_bean
u2_cqdi_has(
u2_noun a, // retain
u2_noun b) // retain
{
if ( u2_nul == a ) {
return u2_no;
}
else {
u2_noun l_a, n_a, r_a;
if ( (u2_no == u2_cr_mean(a, 2, &n_a, 6, &l_a, 7, &r_a, 0)) ) {
return u2_cm_bail(c3__exit);
}
else {
if ( (u2_yes == u2_cr_sing(b, n_a)) ) {
return u2_yes;
}
else {
if ( u2_yes == u2_cqc_hor(b, n_a) ) {
return u2_cqdi_has(l_a, b);
}
else return u2_cqdi_has(r_a, b);
}
}
}
}
u2_weak // transfer
j2_mc(Pt4, in, has)(
u2_noun cor) // retain
{
u2_noun a, b;
if ( u2_no == u2_cr_mean(cor, u2_cv_sam, &b, u2_cv_con_sam, &a, 0) ) {
return u2_cm_bail(c3__exit);
} else {
return u2_cqdi_has(a, b);
}
}
/* structures
*/
u2_ho_jet
j2_mcj(Pt4, in, has)[] = {
{ ".2", c3__lite, j2_mc(Pt4, in, has), Tier4, u2_none, u2_none },
{ }
};