mark functions and vars as static (#146)
the goal here to mark functions and variables not used outside the translation unit as static. main reason for this is cleanliness. however as a side-effect this can help compilers optimize better as it now has guarantee that a certain function won't be called outside of that translation unit. one other side-effect of this is that accessing these vars/function from config.h is now different. if one wants to access a static var/func from different translation unit in config.h, he would have to create a wrapper function under the right ifdef. for static functions one would also need to forward declare it. here's a dummy example of accessing the function `run_key_handler` from config.h under _MAPPINGS_CONFIG ``` static void run_key_handler(const char *, unsigned); bool send_with_ctrl(arg_t key) { run_key_handler(XKeysymToString(key), ControlMask); return false; } ```
This commit is contained in:
30
main.c
30
main.c
@ -67,7 +67,7 @@ int markidx;
|
||||
int prefix;
|
||||
bool extprefix;
|
||||
|
||||
bool resized = false;
|
||||
static bool resized = false;
|
||||
|
||||
typedef struct {
|
||||
int err;
|
||||
@ -97,7 +97,7 @@ timeout_t timeouts[] = {
|
||||
/**************************
|
||||
function implementations
|
||||
**************************/
|
||||
void cleanup(void)
|
||||
static void cleanup(void)
|
||||
{
|
||||
img_close(&img, false);
|
||||
arl_cleanup(&arl);
|
||||
@ -113,7 +113,7 @@ static bool xgetline(char **lineptr, size_t *n)
|
||||
return len > 0;
|
||||
}
|
||||
|
||||
void check_add_file(char *filename, bool given)
|
||||
static void check_add_file(char *filename, bool given)
|
||||
{
|
||||
char *path;
|
||||
|
||||
@ -203,7 +203,7 @@ void reset_timeout(timeout_f handler)
|
||||
}
|
||||
}
|
||||
|
||||
bool check_timeouts(struct timeval *t)
|
||||
static bool check_timeouts(struct timeval *t)
|
||||
{
|
||||
int i = 0, tdiff, tmin = -1;
|
||||
struct timeval now;
|
||||
@ -265,7 +265,7 @@ void open_info(void)
|
||||
}
|
||||
}
|
||||
|
||||
void read_info(void)
|
||||
static void read_info(void)
|
||||
{
|
||||
ssize_t i, n;
|
||||
char buf[BAR_L_LEN];
|
||||
@ -347,7 +347,7 @@ bool mark_image(int n, bool on)
|
||||
return false;
|
||||
}
|
||||
|
||||
void bar_put(win_bar_t *bar, const char *fmt, ...)
|
||||
static void bar_put(win_bar_t *bar, const char *fmt, ...)
|
||||
{
|
||||
size_t len = bar->size - (bar->p - bar->buf), n;
|
||||
va_list ap;
|
||||
@ -358,7 +358,7 @@ void bar_put(win_bar_t *bar, const char *fmt, ...)
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
void update_info(void)
|
||||
static void update_info(void)
|
||||
{
|
||||
unsigned int i, fn, fw;
|
||||
const char * mark;
|
||||
@ -507,7 +507,7 @@ void handle_key_handler(bool init)
|
||||
win_draw(&win);
|
||||
}
|
||||
|
||||
void run_key_handler(const char *key, unsigned int mask)
|
||||
static void run_key_handler(const char *key, unsigned int mask)
|
||||
{
|
||||
pid_t pid;
|
||||
FILE *pfs;
|
||||
@ -605,8 +605,8 @@ end:
|
||||
redraw();
|
||||
}
|
||||
|
||||
bool process_bindings(const keymap_t *keys, unsigned int len,
|
||||
KeySym ksym_or_button, unsigned int state)
|
||||
static bool process_bindings(const keymap_t *keys, unsigned int len,
|
||||
KeySym ksym_or_button, unsigned int state)
|
||||
{
|
||||
unsigned int i;
|
||||
bool dirty = false;
|
||||
@ -624,7 +624,7 @@ bool process_bindings(const keymap_t *keys, unsigned int len,
|
||||
return dirty;
|
||||
}
|
||||
|
||||
void on_keypress(XKeyEvent *kev)
|
||||
static void on_keypress(XKeyEvent *kev)
|
||||
{
|
||||
unsigned int sh = 0;
|
||||
KeySym ksym, shksym;
|
||||
@ -659,7 +659,7 @@ void on_keypress(XKeyEvent *kev)
|
||||
prefix = 0;
|
||||
}
|
||||
|
||||
void on_buttonpress(XButtonEvent *bev)
|
||||
static void on_buttonpress(XButtonEvent *bev)
|
||||
{
|
||||
int sel;
|
||||
bool dirty = false;
|
||||
@ -720,7 +720,7 @@ void on_buttonpress(XButtonEvent *bev)
|
||||
prefix = 0;
|
||||
}
|
||||
|
||||
void run(void)
|
||||
static void run(void)
|
||||
{
|
||||
int xfd;
|
||||
fd_set fds;
|
||||
@ -837,7 +837,7 @@ void run(void)
|
||||
}
|
||||
}
|
||||
|
||||
int fncmp(const void *a, const void *b)
|
||||
static int fncmp(const void *a, const void *b)
|
||||
{
|
||||
return strcoll(((fileinfo_t*) a)->name, ((fileinfo_t*) b)->name);
|
||||
}
|
||||
@ -847,7 +847,7 @@ void sigchld(int sig)
|
||||
while (waitpid(-1, NULL, WNOHANG) > 0);
|
||||
}
|
||||
|
||||
void setup_signal(int sig, void (*handler)(int sig))
|
||||
static void setup_signal(int sig, void (*handler)(int sig))
|
||||
{
|
||||
struct sigaction sa;
|
||||
|
||||
|
Reference in New Issue
Block a user