]> git.ozlabs.org Git - ccan/blobdiff - ccan/asort/_info
ccan: Correct some poor conventions in _info includes
[ccan] / ccan / asort / _info
index e848ff1a974d73660200694cf33279448270a490..57523cc9db929582be65ca2cf29dabc5318bc382 100644 (file)
@@ -1,3 +1,4 @@
+#include "config.h"
 #include <stdio.h>
 #include <string.h>
 
@@ -11,7 +12,7 @@
  *
  * asort does both.
  *
- * Licence: LGPL
+ * License: LGPL (v2.1 or any later version)
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  *
  * Example:
  *     #include <stdio.h>
  *     #include <string.h>
  *     
- *     static int cmp(const char **a, const char **n, bool *casefold)
+ *     static int cmp(char *const *a, char *const *n, bool *casefold)
  *     {
  *             if (*casefold)
- *                     return strcasecmp(*a, *b);
+ *                     return strcasecmp(*a, *n);
  *             else
- *                     return strcmp(*a, *b);
+ *                     return strcmp(*a, *n);
  *     }
  *     
  *     int main(int argc, char *argv[])
@@ -58,6 +59,9 @@ int main(int argc, char *argv[])
 
        if (strcmp(argv[1], "depends") == 0) {
                printf("ccan/typesafe_cb\n");
+               return 0;
+       }
+       if (strcmp(argv[1], "testdepends") == 0) {
                printf("ccan/array_size\n");
                return 0;
        }