urbit/jets/f/help.c

32 lines
499 B
C
Raw Normal View History

2017-09-28 03:47:26 +03:00
/* j/6/help.c
**
*/
#include "all.h"
/* functions
*/
u3_noun
u3qf_help(u3_noun sag,
u3_noun tip)
{
if ( c3__void == tip ) {
return c3__void;
}
else return u3nt(c3__help,
u3k(sag),
u3k(tip));
}
u3_noun
u3wf_help(u3_noun cor)
{
u3_noun sag, tip;
if ( c3n == u3r_mean(cor, u3x_sam_2, &sag, u3x_sam_3, &tip, 0) ) {
return u3m_bail(c3__fail);
} else {
return u3qf_help(sag, tip);
}
}