8f19e80e0ea8ffd1e9c2fb69e03aac34d26d0162
kehayden
  Tue Jan 24 12:31:45 2012 -0800
added TAGS for kent library (c/o markd)
diff --git src/kehayden/learningLibs/learningLibs.c src/kehayden/learningLibs/learningLibs.c
new file mode 100644
index 0000000..4d677e6
--- /dev/null
+++ src/kehayden/learningLibs/learningLibs.c
@@ -0,0 +1,36 @@
+/* learningLibs - A program to help learn the kent libraries.. */
+#include "common.h"
+#include "linefile.h"
+#include "hash.h"
+#include "options.h"
+
+void usage()
+/* Explain usage and exit. */
+{
+errAbort(
+  "learningLibs - A program to help learn the kent libraries.\n"
+  "usage:\n"
+  "   learningLibs XXX\n"
+  "options:\n"
+  "   -xxx=XXX\n"
+  );
+}
+
+static struct optionSpec options[] = {
+   {NULL, 0},
+};
+
+void learningLibs(char *XXX)
+/* learningLibs - A program to help learn the kent libraries.. */
+{
+}
+
+int main(int argc, char *argv[])
+/* Process command line. */
+{
+optionInit(&argc, argv, options);
+if (argc != 2)
+    usage();
+learningLibs(argv[1]);
+return 0;
+}