summaryrefslogtreecommitdiff
path: root/client/client.c
blob: de5468e60fae5491aa24186b73f09416abd0e9c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 :*/