]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb/_info
Add scores/ directory to .gitignore.
[ccan] / ccan / tdb / _info
index 7ba90f79c45935575fb9592a6a2565e62614776d..f7cf273c1131f00c1c1c9a5d0007d3855f7236a6 100644 (file)
  *     #include <err.h>
  *     #include <stdio.h>
  *     
- *     static void usage(void)
+ *     static void usage(const char *argv0)
  *     {
  *             errx(1, "Usage: %s fetch <dbfile> <key>\n"
- *                  "OR %s store <dbfile> <key> <data>");
+ *                  "OR %s store <dbfile> <key> <data>", argv0, argv0);
  *     }
  *     
  *     int main(int argc, char *argv[])
@@ -26,7 +26,7 @@
  *             TDB_DATA key, value;
  *     
  *             if (argc < 4)
- *                     usage();
+ *                     usage(argv[0]);
  *     
  *             tdb = tdb_open(argv[2], 1024, TDB_DEFAULT, O_CREAT|O_RDWR,
  *                             0600);
@@ -38,7 +38,7 @@
  *     
  *             if (streq(argv[1], "fetch")) {
  *                     if (argc != 4)
- *                             usage();
+ *                             usage(argv[0]);
  *                     value = tdb_fetch(tdb, key);
  *                     if (!value.dptr)
  *                             errx(1, "fetch %s: %s",
  *                     free(value.dptr);
  *             } else if (streq(argv[1], "store")) {
  *                     if (argc != 5)
- *                             usage();
+ *                             usage(argv[0]);
  *                     value.dptr = (void *)argv[4];
  *                     value.dsize = strlen(argv[4]);
  *                     if (tdb_store(tdb, key, value, 0) != 0)
  *                             errx(1, "store %s: %s",
  *                                  argv[3], tdb_errorstr(tdb));
  *             } else
- *                     usage();
+ *                     usage(argv[0]);
  *     
  *             return 0;
  *     }
  *
  * Author: Andrew Tridgell, Jeremy Allison, Rusty Russell
  *
- * Licence: LGPLv3 (or later)
+ * License: LGPLv3 (or later)
  *
- * Fails: valgrind-tests // valgrind breaks fcntl locks.
+ * Ccanlint:
+ *     // valgrind breaks fcntl locks.
+ *     valgrind-tests FAIL
  */
 int main(int argc, char *argv[])
 {
@@ -73,7 +75,7 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
-               printf("ccan/hash\n");
+               printf("ccan/compiler\n");
                return 0;
        }