mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-04 20:54:21 +03:00
44 lines
742 B
C
44 lines
742 B
C
/* j/6/flip.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
|
|
|
|
/* functions
|
|
*/
|
|
u3_noun
|
|
u3_cqf_flip(
|
|
u3_noun hel)
|
|
{
|
|
if ( u3_yes == u3_cr_sing(1, u3h(hel)) ) {
|
|
if ( (u3_yes == u3t(hel)) ) {
|
|
return u3nc(1, u3_no);
|
|
}
|
|
else {
|
|
c3_assert((u3_no == u3t(hel)));
|
|
|
|
return u3nc(1, u3_yes);
|
|
}
|
|
}
|
|
else {
|
|
return u3nq
|
|
(6,
|
|
u3k(hel),
|
|
u3nc(1, u3_no),
|
|
u3nc(1, u3_yes));
|
|
}
|
|
}
|
|
u3_noun
|
|
u3_cwf_flip(
|
|
u3_noun cor)
|
|
{
|
|
u3_noun hel;
|
|
|
|
if ( u3_none == (hel = u3_cr_at(u3_cv_sam, cor)) ) {
|
|
return u3_cm_bail(c3__fail);
|
|
} else {
|
|
return u3_cqf_flip(hel);
|
|
}
|
|
}
|