urbit/gen164/3/dor.c
Steve Dee b99b8969d9 Whitespace: the invisible killer
Includes our first ever pass over the jets. Yikes.
2014-04-21 18:22:11 -07:00

60 lines
1.5 KiB
C

/* j/3/dor.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_weak // transfer
j2_mbc(Pt3, dor)(u2_wire wir_r,
u2_atom a, // retain
u2_atom b) // retain
{
if ( u2_yes == u2_sing(a, b) ) {
return u2_yes;
}
else {
if ( u2_yes == u2_stud(a) ) {
if ( u2_yes == u2_stud(b) ) {
return j2_mbc(Pt1, lth)(wir_r, a, b);
}
else {
return u2_yes;
}
}
else {
if ( u2_yes == u2_stud(b) ) {
return u2_no;
}
else {
if ( u2_yes == u2_sing(u2_h(a), u2_h(b)) ) {
return j2_mbc(Pt3, dor)(wir_r, u2_t(a), u2_t(b));
}
else return j2_mbc(Pt3, dor)(wir_r, u2_h(a), u2_h(b));
}
}
}
}
u2_weak // transfer
j2_mb(Pt3, dor)(u2_wire wir_r,
u2_noun cor) // retain
{
u2_noun a, b;
if ( u2_no == u2_mean(cor, u2_cv_sam_2, &a, u2_cv_sam_3, &b, 0) ) {
return u2_bl_bail(wir_r, c3__exit);
} else {
return j2_mbc(Pt3, dor)(wir_r, a, b);
}
}
/* structures
*/
u2_ho_jet
j2_mbj(Pt3, dor)[] = {
{ ".2", c3__lite, j2_mb(Pt3, dor), Tier3, u2_none, u2_none },
{ }
};