forked from RepoMirrors/bemenu
31 lines
513 B
C
31 lines
513 B
C
|
/**
|
||
|
* @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 :*/
|