2013-09-29 00:21:18 +04:00
|
|
|
/* j/3/mug.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
|
2014-09-23 22:58:57 +04:00
|
|
|
u3_cwc_mug(u3_noun cor)
|
2013-09-29 00:21:18 +04:00
|
|
|
{
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun sam;
|
2013-09-29 00:21:18 +04:00
|
|
|
|
2014-11-06 02:36:30 +03:00
|
|
|
if ( u3_none == (sam = u3_cr_at(u3_cv_sam, cor)) ) {
|
2014-09-06 00:13:24 +04:00
|
|
|
return u3_cm_bail(c3__exit);
|
2013-09-29 00:21:18 +04:00
|
|
|
} else {
|
2014-09-06 00:13:24 +04:00
|
|
|
return u3_cr_mug(sam);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|