shrub/jets/b/sort.c

29 lines
394 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/2/sort.c
**
*/
#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
2015-08-28 16:25:37 +03:00
u3qb_sort(u3_noun a,
u3_noun b)
2013-09-29 00:21:18 +04:00
{
// must think about
//
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__fail);
2013-09-29 00:21:18 +04:00
}
2014-09-06 00:13:24 +04:00
u3_noun
2015-08-28 16:25:37 +03:00
u3wb_sort(u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a, b;
2013-09-29 00:21:18 +04:00
2014-11-18 00:56:51 +03:00
if ( c3n == u3r_mean(cor, u3x_sam_2, &a, u3x_sam_3, &b, 0) ) {
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-11-06 22:13:57 +03:00
return u3qb_sort(a, b);
2013-09-29 00:21:18 +04:00
}
}