shrub/jets/b/bind.c

31 lines
442 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/2/bind.c
**
*/
#include "all.h"
2014-09-04 07:10:43 +04:00
2013-09-29 00:21:18 +04:00
/* functions
*/
2014-09-06 00:13:24 +04:00
u3_noun
2015-08-28 16:25:37 +03:00
u3qb_bind(u3_noun a,
u3_noun b)
2013-09-29 00:21:18 +04:00
{
2014-08-20 01:49:16 +04:00
if ( 0 == a ) {
return 0;
2013-09-29 00:21:18 +04:00
} else {
2014-11-06 03:20:01 +03:00
return u3nc(0, u3n_slam_on(u3k(b), u3k(u3t(a))));
2013-09-29 00:21:18 +04:00
}
}
2014-09-06 00:13:24 +04:00
u3_noun
2015-08-28 16:25:37 +03:00
u3wb_bind(u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a, b;
2013-09-29 00:21:18 +04:00
2014-11-18 00:56:51 +03:00
if ( c3n == u3r_mean(cor, u3x_sam_2, &a, u3x_sam_3, &b, 0) ) {
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-11-06 22:13:57 +03:00
return u3qb_bind(a, b);
2013-09-29 00:21:18 +04:00
}
}