aboutsummaryrefslogtreecommitdiffstats
path: root/qsort_rev_uint32p.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-05-05 20:50:12 +0200
committerMattias Andrée <maandree@kth.se>2024-05-05 20:50:12 +0200
commitb663b8ca0207d7e3b9bd84a69e6090133a8d0ce1 (patch)
tree4dfde40daeb7bbcdcb8d067b0d2b4a5d0bd29443 /qsort_rev_uint32p.c
parentm + add ascii.h and exec.h (diff)
downloadlibsimple-b663b8ca0207d7e3b9bd84a69e6090133a8d0ce1.tar.gz
libsimple-b663b8ca0207d7e3b9bd84a69e6090133a8d0ce1.tar.bz2
libsimple-b663b8ca0207d7e3b9bd84a69e6090133a8d0ce1.tar.xz
Add libsimple_{cmp,qsort}_*
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'qsort_rev_uint32p.c')
-rw-r--r--qsort_rev_uint32p.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/qsort_rev_uint32p.c b/qsort_rev_uint32p.c
new file mode 100644
index 0000000..9c4cab3
--- /dev/null
+++ b/qsort_rev_uint32p.c
@@ -0,0 +1,18 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+
+extern inline void libsimple_qsort_rev_uint32p(uint32_t *[], size_t);
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ return 0;
+}
+
+#endif