From 9fa266e62dc0782f7c2125f18fed2668ea414b29 Mon Sep 17 00:00:00 2001 From: louie Date: Mon, 28 Dec 2020 15:04:49 -0800 Subject: Cleaned up headers --- draw.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'draw.c') diff --git a/draw.c b/draw.c index 2a09332..b9d73d9 100644 --- a/draw.c +++ b/draw.c @@ -1,4 +1,9 @@ -//Windows Compatability +#include +#include +#include +#include + +//Windows/Unix Compatability #if defined _WIN32 || defined _WIN64 #include #include "windows/draw.h" @@ -9,14 +14,10 @@ #include "unix/read_cfg.h" #endif -#include -#include -#include -#include #include "entry.h" #include "group.h" #include "read_cfg.h" -#define BUF_LEN 1024 +#include "draw.h" #define MAX_LEN 6 #define GAP_SIZE 1 #define WIDTH (getmaxx(stdscr)) //width of the entire term @@ -31,7 +32,6 @@ void update_col(int mode, int hl_where, bool resize); //0 = last, 1 = first; 0 = void switch_col(); void trav_col(int new_i); int locateChar(char input); -char *get_launch(); WINDOW *group_win = NULL; WINDOW *entry_win = NULL; -- cgit