summaryrefslogtreecommitdiff
path: root/src/common/sort.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2023-05-15 06:17:14 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2023-05-15 06:17:14 (GMT)
commitb32dc8eb03390ca2af7a46119ab150d7b6d5bfd9 (patch)
tree94f562051d0ed64375fce0ca74a0a7d2555bf8cd /src/common/sort.h
parent9e4480706b28abc41618bd598c00a194beb14c4f (diff)
Sort signed and unsigned long long value when required.
Diffstat (limited to 'src/common/sort.h')
-rw-r--r--src/common/sort.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/sort.h b/src/common/sort.h
index fbdecec..4b2ae94 100644
--- a/src/common/sort.h
+++ b/src/common/sort.h
@@ -37,6 +37,12 @@ int sort_boolean(bool, bool);
/* Compare une valeur avec une autre. */
int sort_unsigned_long(unsigned long, unsigned long);
+/* Compare une valeur avec une autre. */
+int sort_signed_long_long(signed long long, signed long long);
+
+/* Compare une valeur avec une autre. */
+int sort_unsigned_long_long(unsigned long long, unsigned long long);
+
/* Compare une valeur de 64 bits avec une autre. */
int sort_uint64_t(uint64_t, uint64_t);