14 lines
203 B
C
14 lines
203 B
C
|
#include "bspc.c"
|
||
|
#include "module.h"
|
||
|
|
||
|
struct module table[] = {
|
||
|
{0, 10, bspwm_update, {'\0'}},
|
||
|
};
|
||
|
|
||
|
int main(void) {
|
||
|
table[0].updatecallback(&table[0]);
|
||
|
printf("%s\n", table[0].buffer);
|
||
|
|
||
|
return 0;
|
||
|
}
|