diff options
Diffstat (limited to 'client/client.c')
-rw-r--r-- | client/client.c | 30 |
1 files changed, 30 insertions, 0 deletions
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 <stdlib.h> + +/** + * 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 :*/ |