urbit/gen164/2/sort.c

39 lines
926 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/2/sort.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_weak // transfer
2014-09-03 07:36:29 +04:00
u2_cqb_sort(
2013-09-29 00:21:18 +04:00
u2_noun a, // retain
u2_noun b) // retain
{
// must think about
//
2014-08-20 01:49:16 +04:00
return u2_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
}
u2_noun // transfer
2014-08-20 01:49:16 +04:00
j2_mb(Pt2, sort)(
2013-09-29 00:21:18 +04:00
u2_noun cor) // retain
{
u2_noun a, b;
2014-08-20 01:49:16 +04:00
if ( u2_no == u2_cr_mean(cor, u2_cv_sam_2, &a, u2_cv_sam_3, &b, 0) ) {
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-03 07:36:29 +04:00
return u2_cqb_sort(a, b);
2013-09-29 00:21:18 +04:00
}
}
/* structures
*/
u2_ho_jet
2013-09-29 00:21:18 +04:00
j2_mbj(Pt2, sort)[] = {
{ ".2", c3__lite, u2_jet_dead, Tier2, u2_none, u2_none },
{ }
};