]> git.ozlabs.org Git - ccan/blobdiff - ccan/avl/_info
base64: fix for unsigned chars (e.g. ARM).
[ccan] / ccan / avl / _info
index d56086e03ba1ab508680e7531d5e5123ad2b28ee..c7fc98a46ff2f97327d9c92518a550651c255432 100644 (file)
@@ -1,5 +1,6 @@
-#include <string.h>
 #include "config.h"
+#include <stdio.h>
+#include <string.h>
 
 /**
  * avl - Key-value dictionary based on AVL trees
@@ -32,7 +33,7 @@
  * 
  * int main(void)
  * {
- *     AVL          *avl = avl_new((AvlCompare) strcmp);
+ *     AVL          *avl = avl_new((total_order_noctx_cb) strcmp);
  *     AvlIter       i;
  *     struct tally *tally;
  *     char          line[256];
@@ -63,8 +64,9 @@
  *     return 0;
  * }
  *
- * License: MIT
  * Author: Joey Adams <joeyadams3.14159@gmail.com>
+ * License: MIT
+ * Version: 0.1
  */
 int main(int argc, char *argv[])
 {
@@ -73,7 +75,7 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
-               /* Nothing */
+               printf("ccan/order\n");
                return 0;
        }