X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fstring%2F_info.c;h=e8c4061ae08c63a4618b4eb46994459a8d02f364;hp=9cb691ce64f5701cf181fccd9d04d6bc42e4874d;hb=be6b32cbe44df085efbae36c07b566bda88c6154;hpb=650c775ff00cccd03fc84e7789a03c51d9839004 diff --git a/ccan/string/_info.c b/ccan/string/_info.c index 9cb691ce..e8c4061a 100644 --- a/ccan/string/_info.c +++ b/ccan/string/_info.c @@ -5,7 +5,7 @@ /** * 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: @@ -27,9 +27,11 @@ int main(int argc, char *argv[]) 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 1; }