blob: 2815edfce05a94951358c86106e4c7c5e6f720f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _SWAYBAR_RENDER_H
#define _SWAYBAR_RENDER_H
#include "config.h"
#include "state.h"
/**
* Render swaybar.
*/
void render(struct output *output, struct swaybar_config *config, struct status_line *line);
#endif /* _SWAYBAR_RENDER_H */
|