2021-11-15 20:20:19 -05:00
|
|
|
#ifndef _HELPERS_H
|
|
|
|
#define _HELPERS_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2021-11-15 21:12:27 -05:00
|
|
|
int helpers_gap_size(
|
|
|
|
unsigned int displayed_clients,
|
|
|
|
bool selected_is_fullscreen,
|
|
|
|
bool any_is_fullscreen
|
|
|
|
);
|
|
|
|
|
|
|
|
int helpers_border_width(
|
|
|
|
unsigned int displayed_clients,
|
|
|
|
bool selected_is_fullscreen,
|
|
|
|
bool any_is_fullscreen
|
|
|
|
);
|
2021-11-15 20:20:19 -05:00
|
|
|
|
|
|
|
#endif // _HELPERS_H
|