summaryrefslogtreecommitdiff
path: root/include/qsort.h
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2020-09-17 15:09:45 -0400
committerGitHub <noreply@github.com>2020-09-17 15:09:45 -0400
commit198be57aa4c939285a31d9f148adf7e2de290dc1 (patch)
tree97bd76b7a318771b94aae1f8628a589b9fffa83d /include/qsort.h
parent55c1733ceb5a8176a2183fc3872cadb8bb220308 (diff)
parentb4fe17ed30eb2f30bea203322b92be15a4bcb032 (diff)
Merge pull request #46 from mparisi20/decompDArray
Decomp darray.o
Diffstat (limited to 'include/qsort.h')
-rw-r--r--include/qsort.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/qsort.h b/include/qsort.h
new file mode 100644
index 0000000..c13ae0e
--- /dev/null
+++ b/include/qsort.h
@@ -0,0 +1,15 @@
+#ifndef POKEREVO_QSORT_H
+#define POKEREVO_QSORT_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void qsort(void *base, u32 nmemb, u32 size,
+ s32 (*compar)(const void *, const void *));
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_QSORT_H