order_by_int renamed to order_by_num + some experiments with lists
[svn/Cll1h/.git] / cll1.h
diff --git a/cll1.h b/cll1.h
index a3a6a317773105dca4fd3e15b3163ac757104fd4..f6f023576409e9ffce435fefc502f6c749a152de 100644 (file)
--- a/cll1.h
+++ b/cll1.h
@@ -141,8 +141,8 @@ extern  unsigned RANDOM_SEED;
 //to do: seek
 //to do: store
 #define count(NODE,HEAD,VAR) { _NEW(I,0) for(NODE=HEAD; NODE || ((VAR=_I),0) ; (NODE=NODE->__next)?(_I++):0 ); }
-#define order_by_int(K1,K2) (K1>K2)
-#define order_by_int_desc(K1,K2) (K1<K2)
+#define order_by_num(K1,K2) (K1>K2)
+#define order_by_num_desc(K1,K2) (K1<K2)
 #define order_by_str(K1,K2) (str_order(K1,K2)>0)
 #define order_by_str_desc(K1,K2) (str_order(K1,K2)<0)
 #define order_by_ascii(K1,K2) (str_ascii(K1,K2)>0)
This page took 0.117126 seconds and 4 git commands to generate.