/* see LICENSE file for details on license */ #include "bspwm.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; }