urbit/j/6/cube.c

33 lines
564 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/6/cube.c
**
** This file is in the public domain.
*/
#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
u3_cqf_cube(
u3_noun dil,
u3_noun goq)
2013-09-29 00:21:18 +04:00
{
if ( c3__void == goq ) {
return c3__void;
}
2014-09-06 00:13:24 +04: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
u3_cwf_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-05 04:18:47 +03:00
if ( c3n == u3_cr_mean(cor, u3_cv_sam_2, &dil, u3_cv_sam_3, &goq, 0) ) {
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqf_cube(dil, goq);
2013-09-29 00:21:18 +04:00
}
}