mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 21:02:01 +03:00
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
/* j/6/flor.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
#include "../pit.h"
|
|
|
|
/* functions
|
|
*/
|
|
u2_noun // transfer
|
|
u2_cqf_flor(
|
|
u2_noun bos, // retain
|
|
u2_noun nif) // retain
|
|
{
|
|
if ( u2_yes == u2_cr_sing(1, u2h(bos)) ) {
|
|
if ( (u2_nul == u2t(bos)) ) {
|
|
return u2k(bos);
|
|
}
|
|
else return u2k(nif);
|
|
}
|
|
else {
|
|
if ( u2_yes == u2_cr_sing(1, u2h(nif)) ) {
|
|
if ( (u2_nul == u2t(nif)) ) {
|
|
return u2k(nif);
|
|
}
|
|
else return u2k(bos);
|
|
}
|
|
else {
|
|
return u2nq
|
|
(6,
|
|
u2k(bos),
|
|
u2nc(1, u2_yes),
|
|
u2k(nif));
|
|
}
|
|
}
|
|
}
|
|
u2_noun // transfer
|
|
u2_cwf_flor(
|
|
u2_noun cor) // retain
|
|
{
|
|
u2_noun bos, nif;
|
|
|
|
if ( u2_no == u2_cr_mean(cor, u2_cv_sam_2, &bos, u2_cv_sam_3, &nif, 0) ) {
|
|
return u2_cm_bail(c3__fail);
|
|
} else {
|
|
return u2_cqf_flor(bos, nif);
|
|
}
|
|
}
|