From ff314f3c5e1b30fed112adb97ab5d29f5a2e108b Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Tue, 18 Mar 2014 19:35:10 +0200 Subject: Add project skeleton --- client/client.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 client/client.c (limited to 'client/client.c') diff --git a/client/client.c b/client/client.c new file mode 100644 index 0000000..de5468e --- /dev/null +++ b/client/client.c @@ -0,0 +1,30 @@ +/** + * @file client.c + * + * Sample client using the libbemenu. + * Also usable as dmenu replacement. + */ + +#include + +/** + * Main method + * + * This function gives and takes the life of our program. + * + * @param argc Number of arguments from command line + * @param argv Pointer to array of the arguments + * @return exit status of the program + */ +int main(int argc, char **argv) +{ + (void)argc, (void)argv; + + /* + * code goes here + */ + + return EXIT_SUCCESS; +} + +/* vim: set ts=8 sw=4 tw=0 :*/ -- cgit v1.2.3-70-g09d2