aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook.c
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook.c')
-rw-r--r--addressbook.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/addressbook.c b/addressbook.c
new file mode 100644
index 0000000..beef1c4
--- /dev/null
+++ b/addressbook.c
@@ -0,0 +1,22 @@
+/* See LICENSE file for copyright and license details. */
+#include <libcontacts.h>
+#include <libsimple.h>
+#include <libsimple-arg.h>
+#include <libterminput.h>
+
+
+USAGE("");
+
+
+int
+main(int argc, char *argv[])
+{
+ ARGBEGIN {
+ default:
+ usage();
+ } ARGEND;
+ if (argc)
+ usage();
+
+ return 0;
+}