mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-15 21:36:58 +03:00
33 lines
555 B
C
33 lines
555 B
C
/* j/6/core.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
|
|
|
|
/* functions
|
|
*/
|
|
u3_noun
|
|
u3qf_core(
|
|
u3_noun pac,
|
|
u3_noun con)
|
|
{
|
|
if ( (c3__void == pac) ) {
|
|
return c3__void;
|
|
} else {
|
|
return u3nt(c3__core, u3k(pac), u3k(con));
|
|
}
|
|
}
|
|
u3_noun
|
|
u3wf_core(
|
|
u3_noun cor)
|
|
{
|
|
u3_noun pac, con;
|
|
|
|
if ( c3n == u3r_mean(cor, u3v_sam_2, &pac, u3v_sam_3, &con, 0) ) {
|
|
return u3m_bail(c3__fail);
|
|
} else {
|
|
return u3qf_core(pac, con);
|
|
}
|
|
}
|