summaryrefslogtreecommitdiff
path: root/src/libbiguint/bu_cmp.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-07-23 16:43:57 +0000
committerLaurent Bercot <ska@appnovation.com>2021-07-23 16:43:57 +0000
commitdd6bb6c6b8298ebeff2d1882becb36580b969d6f (patch)
tree3d922a5791e7e34e2b041ea5f3489360bfa798e1 /src/libbiguint/bu_cmp.c
parent122f9363682e5de8ce4056c4c05c1eaf8935cf19 (diff)
downloadskalibs-dd6bb6c6b8298ebeff2d1882becb36580b969d6f.tar.xz
New 2.11.0.0 branch with several modifications
- libbiguint removed - cdb_make changed to cdbmake (because different ui) - cdb redesigned Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libbiguint/bu_cmp.c')
-rw-r--r--src/libbiguint/bu_cmp.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/libbiguint/bu_cmp.c b/src/libbiguint/bu_cmp.c
deleted file mode 100644
index 0c87e92..0000000
--- a/src/libbiguint/bu_cmp.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* ISC license. */
-
-#include <skalibs/biguint.h>
-
-int bu_cmp (uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn)
-{
- an = bu_len(a, an) ;
- bn = bu_len(b, bn) ;
- if (an < bn) return -1 ;
- if (an > bn) return 1 ;
- while (bn--)
- {
- if (a[bn] < b[bn]) return -1 ;
- if (a[bn] > b[bn]) return 1 ;
- }
- return 0 ;
-}