shrub/gen164/2/clap.c
2014-08-19 17:49:16 -04:00

46 lines
1.2 KiB
C

/* j/2/clap.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_weak // transfer
j2_mbc(Pt2, clap)(u2_noun a, // retain
u2_noun b, // retain
u2_noun c) // retain
{
if ( 0 == a ) {
return u2k(b);
}
else if ( 0 == b ) {
return u2k(a);
}
else {
return u2nc(0, u2_cn_slam_on(u2k(c), u2nc(u2k(u2t(a)), u2k(u2t(b)))));
}
}
u2_noun // transfer
j2_mb(Pt2, clap)(u2_noun cor) // retain
{
u2_noun a, b, c;
if ( u2_no == u2_cr_mean(cor, u2_cv_sam_2, &a,
u2_cv_sam_6, &b,
u2_cv_sam_7, &c, 0) ) {
return u2_cm_bail(c3__exit);
} else {
return j2_mbc(Pt2, clap)(a, b, c);
}
}
/* structures
*/
u2_ho_jet
j2_mbj(Pt2, clap)[] = {
{ ".2", c3__lite, j2_mb(Pt2, clap), Tier2, u2_none, u2_none },
{ }
};