aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-15 18:44:28 +0200
committerMattias Andrée <maandree@kth.se>2021-04-15 18:47:45 +0200
commit8c0607dacc71d9406f6cfb36e105a76828703cea (patch)
treed33f9198d5e5f523cc7992d9689c155b5a2a02d1 /addressbook.c
downloadaddressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.gz
addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.bz2
addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.xz
First commitHEADmaster
Signed-off-by: Mattias Andrée <maandree@kth.se>
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;
+}