Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-05-26 19:50:10 +0400
committerFelix Fietkau <nbd@openwrt.org>2012-05-26 20:01:18 +0400
commit08a4bf2a299de28b46f59fc3fa2661e5632c2967 (patch)
tree9eb6bf17016f28091e8a03a2f8ccd2047fd47150 /avl-cmp.h
parent94ff2a0abb2938dc84cc46e513f0d039cacbe40a (diff)
add avl_strcmp
Diffstat (limited to 'avl-cmp.h')
-rw-r--r--avl-cmp.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/avl-cmp.h b/avl-cmp.h
new file mode 100644
index 0000000..5adb495
--- /dev/null
+++ b/avl-cmp.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+#ifndef __AVL_CMP_H
+#define __AVL_CMP_H
+
+int avl_strcmp(const void *k1, const void *k2, void *ptr);
+
+#endif