summaryrefslogtreecommitdiff
path: root/src/common/sort.h
diff options
context:
space:
mode:
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);