shrub/gen164/2/flop.c

51 lines
1.0 KiB
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/2/flop.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_weak // transfer
2014-08-20 01:49:16 +04:00
j2_mbc(Pt2, flop)(
2013-09-29 00:21:18 +04:00
u2_noun a) // retain
{
2014-08-20 01:49:16 +04:00
u2_weak b = 0;
2013-09-29 00:21:18 +04:00
while ( 1 ) {
if ( u2_nul == a ) {
return b;
}
2014-08-20 01:49:16 +04:00
else if ( u2_no == u2du(a) ) {
u2z(b);
2013-09-29 00:21:18 +04:00
2014-08-20 01:49:16 +04:00
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
}
else {
2014-08-20 01:49:16 +04:00
b = u2nc(u2k(u2h(a)), b);
a = u2t(a);
2013-09-29 00:21:18 +04:00
}
}
}
u2_weak // transfer
2014-08-20 01:49:16 +04:00
j2_mb(Pt2, flop)(
2013-09-29 00:21:18 +04:00
u2_noun cor) // retain
{
u2_noun a;
2014-08-20 01:49:16 +04:00
if ( u2_none == (a = u2_cr_at(u2_cv_sam, cor)) ) {
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-08-20 01:49:16 +04:00
return j2_mbc(Pt2, flop)(a);
2013-09-29 00:21:18 +04:00
}
}
/* structures
*/
u2_ho_jet
2013-09-29 00:21:18 +04:00
j2_mbj(Pt2, flop)[] = {
{ ".2", c3__lite, j2_mb(Pt2, flop), Tier2, u2_none, u2_none },
{ }
};