shrub/j/2/drop.c

32 lines
422 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/2/drop.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_cqb_drop(u3_noun a)
2013-09-29 00:21:18 +04:00
{
2014-08-20 01:49:16 +04:00
if ( 0 == a ) {
2014-09-06 00:13:24 +04:00
return u3_nul;
2013-09-29 00:21:18 +04:00
}
else {
2014-09-06 00:13:24 +04:00
return u3nc(0, u3k(u3t(a)));
2013-09-29 00:21:18 +04:00
}
}
2014-09-06 00:13:24 +04:00
u3_noun
u3_cwb_drop(u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a;
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
if ( u3_none == (a = u3_cr_at(u3_cv_sam, cor)) ) {
return u3_none;
2013-09-29 00:21:18 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqb_drop(a);
2013-09-29 00:21:18 +04:00
}
}