shrub/gen164/6/bull.c

43 lines
1.0 KiB
C
Raw Normal View History

2013-12-26 21:12:07 +04:00
/* j/6/bull.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_noun // transfer
2014-08-21 01:18:34 +04:00
j2_mby(Pt6, bull)(
2013-12-26 21:12:07 +04:00
u2_noun bid, // retain
u2_noun der) // retain
{
2014-01-02 00:47:18 +04:00
if ( (c3__void == der) ||
(c3__void == u2t(u2t(u2t(bid)))) )
2014-01-02 00:47:18 +04:00
{
2013-12-26 21:12:07 +04:00
return c3__void;
}
2014-08-21 01:18:34 +04:00
else return u2nt
(c3__bull, u2k(bid), u2k(der));
2013-12-26 21:12:07 +04:00
}
u2_noun // transfer
2014-08-21 01:18:34 +04:00
j2_mb(Pt6, bull)(
2013-12-26 21:12:07 +04:00
u2_noun cor) // retain
{
u2_noun bid, der;
2014-08-21 01:18:34 +04:00
if ( u2_no == u2_cr_mean(cor, u2_cv_sam_2, &bid, u2_cv_sam_3, &der, 0) ) {
return u2_cm_bail(c3__fail);
2013-12-26 21:12:07 +04:00
} else {
2014-08-21 01:18:34 +04:00
return j2_mby(Pt6, bull)(bid, der);
2013-12-26 21:12:07 +04:00
}
}
/* structures
*/
u2_ho_jet
2013-12-26 21:12:07 +04:00
j2_mbj(Pt6, bull)[] = {
{ ".2", c3__hevy, j2_mb(Pt6, bull), Tier6_a, u2_none, u2_none },
{ }
};