urbit/j/3/mug.c
2014-09-23 11:58:57 -07:00

21 lines
294 B
C

/* j/3/mug.c
**
** This file is in the public domain.
*/
#include "all.h"
/* functions
*/
u3_noun
u3_cwc_mug(u3_noun cor)
{
u3_noun sam;
if ( u3_none == (sam = u3_cr_at(u3_cv_sam, cor)) ) {
return u3_cm_bail(c3__exit);
} else {
return u3_cr_mug(sam);
}
}