mirror of
https://codeberg.org/adnano/wmenu.git
synced 2025-10-29 05:40:20 -04:00
10 lines
148 B
C
10 lines
148 B
C
|
|
#ifndef WMENU_RENDER_H
|
||
|
|
#define WMENU_RENDER_H
|
||
|
|
|
||
|
|
#include "menu.h"
|
||
|
|
|
||
|
|
void calc_widths(struct menu *menu);
|
||
|
|
void render_menu(struct menu *menu);
|
||
|
|
|
||
|
|
#endif
|