mirror of
https://codeberg.org/adnano/wmenu.git
synced 2025-11-02 09:01:43 -05: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
|