urbit/jets/f/cube.c

31 lines
499 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/6/cube.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 19:34:36 +03:00
u3qf_cube(u3_noun dil,
u3_noun goq)
2013-09-29 00:21:18 +04:00
{
if ( c3__void == goq ) {
return c3__void;
}
2015-08-28 19:34:36 +03:00
else return u3nt(c3__cube,
u3k(dil),
u3k(goq));
2013-09-29 00:21:18 +04:00
}
2014-09-06 00:13:24 +04:00
u3_noun
2015-08-28 19:34:36 +03:00
u3wf_cube(u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun dil, goq;
2013-09-29 00:21:18 +04:00
2014-11-18 00:56:51 +03:00
if ( c3n == u3r_mean(cor, u3x_sam_2, &dil, u3x_sam_3, &goq, 0) ) {
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__fail);
2013-09-29 00:21:18 +04:00
} else {
2014-11-06 22:13:57 +03:00
return u3qf_cube(dil, goq);
2013-09-29 00:21:18 +04:00
}
}