shrub/gen164/2/drop.c

32 lines
441 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"
#include "../pit.h"
/* functions
*/
2014-09-04 01:33:18 +04:00
u2_noun
u2_cqb_drop(u2_noun a)
2013-09-29 00:21:18 +04:00
{
2014-08-20 01:49:16 +04:00
if ( 0 == a ) {
2013-09-29 00:21:18 +04:00
return u2_nul;
}
else {
2014-08-20 01:49:16 +04:00
return u2nc(0, u2k(u2t(a)));
2013-09-29 00:21:18 +04:00
}
}
2014-09-04 01:33:18 +04:00
u2_noun
u2_cwb_drop(u2_noun cor)
2013-09-29 00:21:18 +04:00
{
u2_noun a;
2014-08-20 01:49:16 +04:00
if ( u2_none == (a = u2_cr_at(u2_cv_sam, cor)) ) {
2013-09-29 00:21:18 +04:00
return u2_none;
} else {
2014-09-03 07:36:29 +04:00
return u2_cqb_drop(a);
2013-09-29 00:21:18 +04:00
}
}