shrub/j/6/flip.c

44 lines
742 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/6/flip.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_cqf_flip(
u3_noun hel)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
if ( u3_yes == u3_cr_sing(1, u3h(hel)) ) {
if ( (u3_yes == u3t(hel)) ) {
return u3nc(1, u3_no);
2013-09-29 00:21:18 +04:00
}
else {
2014-09-06 00:13:24 +04:00
c3_assert((u3_no == u3t(hel)));
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
return u3nc(1, u3_yes);
2013-09-29 00:21:18 +04:00
}
}
else {
2014-09-06 00:13:24 +04:00
return u3nq
2014-08-21 01:18:34 +04:00
(6,
2014-09-06 00:13:24 +04:00
u3k(hel),
u3nc(1, u3_no),
u3nc(1, u3_yes));
2013-09-29 00:21:18 +04:00
}
}
2014-09-06 00:13:24 +04:00
u3_noun
u3_cwf_flip(
u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun hel;
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
if ( u3_none == (hel = u3_cr_at(u3_cv_sam, cor)) ) {
return u3_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqf_flip(hel);
2013-09-29 00:21:18 +04:00
}
}