urbit/gen164/6/core.c

41 lines
1004 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/6/core.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_noun // transfer
2014-09-03 07:36:29 +04:00
u2_cqf_core(
2013-09-29 00:21:18 +04:00
u2_noun pac, // retain
u2_noun con) // retain
{
if ( (c3__void == pac) ) {
return c3__void;
} else {
2014-08-21 01:18:34 +04:00
return u2nt(c3__core, u2k(pac), u2k(con));
2013-09-29 00:21:18 +04:00
}
}
u2_noun // transfer
2014-08-21 01:18:34 +04:00
j2_mb(Pt6, core)(
2013-09-29 00:21:18 +04:00
u2_noun cor) // retain
{
u2_noun pac, con;
2014-08-21 01:18:34 +04:00
if ( u2_no == u2_cr_mean(cor, u2_cv_sam_2, &pac, u2_cv_sam_3, &con, 0) ) {
return u2_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
} else {
2014-09-03 07:36:29 +04:00
return u2_cqf_core(pac, con);
2013-09-29 00:21:18 +04:00
}
}
/* structures
*/
u2_ho_jet
2013-09-29 00:21:18 +04:00
j2_mbj(Pt6, core)[] = {
{ ".2", c3__hevy, j2_mb(Pt6, core), Tier6_a, u2_none, u2_none },
{ }
};