]> git.ozlabs.org Git - ccan/blobdiff - ccan/string/_info.c
display a-z index for module search and some fixes
[ccan] / ccan / string / _info.c
index 9cb691ce64f5701cf181fccd9d04d6bc42e4874d..e8c4061ae08c63a4618b4eb46994459a8d02f364 100644 (file)
@@ -5,7 +5,7 @@
 /**
  * string - string helper routines
  *
 /**
  * string - string helper routines
  *
- * This is a grab bag of modules for string comparisons, designed to enhance
+ * This is a grab bag of modules for string operations, designed to enhance
  * the standard string.h.
  *
  * Example:
  * the standard string.h.
  *
  * Example:
@@ -27,9 +27,11 @@ int main(int argc, char *argv[])
        if (argc != 2)
                return 1;
 
        if (argc != 2)
                return 1;
 
-       if (strcmp(argv[1], "depends") == 0)
-               /* Nothing. */
+       if (strcmp(argv[1], "depends") == 0) {
+               printf("ccan/talloc\n");
+               printf("ccan/noerr\n");
                return 0;
                return 0;
+       }
 
        return 1;
 }
 
        return 1;
 }