Naming of statics

This commit is contained in:
James Booth
2012-02-12 22:09:07 +00:00
parent b71f61d400
commit 7aa1d931a0
6 changed files with 164 additions and 150 deletions

View File

@@ -12,10 +12,10 @@ void create_title_bar(void)
title_bar = newwin(1, cols, 0, 0);
wbkgd(title_bar, COLOR_PAIR(3));
title_bar_show(title);
win_title_bar_show(title);
}
void title_bar_show(char *title)
void win_title_bar_show(char *title)
{
wclear(title_bar);
mvwprintw(title_bar, 0, 0, " %s", title);