urbit/j/5/trip.c

37 lines
539 B
C
Raw Normal View History

2014-09-05 23:55:16 +04:00
/* j/5/trip.c
2013-09-29 00:21:18 +04:00
**
** 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-04 01:33:18 +04:00
u2_noun
u2_cqe_trip(u2_atom a)
2013-09-29 00:21:18 +04:00
{
2014-08-20 10:22:41 +04:00
if ( u2_no == u2ud(a) ) {
return u2_cm_bail(c3__exit);
2014-06-03 09:07:32 +04:00
}
2014-09-03 07:36:29 +04:00
return u2_cqc_rip(3, a);
2013-09-29 00:21:18 +04:00
}
2014-09-04 01:33:18 +04:00
u2_noun
u2_cwe_trip(u2_noun cor)
2013-09-29 00:21:18 +04:00
{
u2_noun a;
2014-08-20 10:22:41 +04:00
if ( (u2_none == (a = u2_cr_at(u2_cv_sam, cor))) ) {
return u2_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
} else {
2014-09-04 01:33:18 +04:00
return u2_cqe_trip(a);
2013-09-29 00:21:18 +04:00
}
}
2014-09-05 23:55:16 +04:00
u2_atom
u2_cke_trip(u2_noun a)
{
u2_atom b = u2_cqe_trip(a);
u2z(a);
return b;
}