urbit/j/3/cap.c

40 lines
605 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/cap.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_cqc_cap(
u3_atom a)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
c3_w met_w = u3_cr_met(0, a);
2013-09-29 00:21:18 +04:00
if ( met_w < 2 ) {
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
}
2014-09-06 00:13:24 +04:00
else if ( (1 == u3_cr_bit((met_w - 2), a)) ) {
2014-08-20 05:39:48 +04:00
return 3;
2013-09-29 00:21:18 +04:00
} else {
2014-08-20 05:39:48 +04:00
return 2;
2013-09-29 00:21:18 +04:00
}
}
2014-09-06 00:13:24 +04:00
u3_noun
u3_cwc_cap(
u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a;
2013-09-29 00:21:18 +04:00
2014-11-05 04:18:47 +03:00
if ( (c3nne == (a = u3_cr_at(u3_cv_sam, cor))) ||
(c3n == u3ud(a)) )
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqc_cap(a);
2013-09-29 00:21:18 +04:00
}
}