diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-15 18:44:28 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-15 18:47:45 +0200 |
commit | 8c0607dacc71d9406f6cfb36e105a76828703cea (patch) | |
tree | d33f9198d5e5f523cc7992d9689c155b5a2a02d1 /addressbook.c | |
download | addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.gz addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.bz2 addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | addressbook.c | 22 |
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; +} |