shrub/gen164/6/bull.c

35 lines
636 B
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
*/
2014-09-04 01:33:18 +04:00
u2_noun
2014-09-03 07:36:29 +04:00
u2_cqf_bull(
2014-09-04 01:33:18 +04:00
u2_noun bid,
u2_noun der)
2013-12-26 21:12:07 +04:00
{
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
}
2014-09-04 01:33:18 +04:00
u2_noun
2014-09-03 09:46:55 +04:00
u2_cwf_bull(
2014-09-04 01:33:18 +04:00
u2_noun cor)
2013-12-26 21:12:07 +04:00
{
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-09-03 07:36:29 +04:00
return u2_cqf_bull(bid, der);
2013-12-26 21:12:07 +04:00
}
}