summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2022-11-06 14:53:23 -0800
committerLouie S <louie@example.com>2022-11-06 14:53:23 -0800
commitcdea6b0e8c1e51c9962f73e183a3bd72ed63b40f (patch)
tree1e9f4261acfe48c0ef37dd64f2a589d1e13b89b1 /include
parente58f35f4580ad4377c3ba5dcaee5bbbd938713c6 (diff)
Restructure repository
Diffstat (limited to 'include')
-rw-r--r--include/cache.h10
-rw-r--r--include/draw.h18
-rw-r--r--include/entry.h28
-rw-r--r--include/group.h40
-rw-r--r--include/read_cfg.h23
5 files changed, 0 insertions, 119 deletions
diff --git a/include/cache.h b/include/cache.h
deleted file mode 100644
index 0f5a6c4..0000000
--- a/include/cache.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef CACHE_H
-#define CACHE_H
-
-void save_to_cache(int g_hover, int e_hover, int true_hover, char *cfg_name);
-
-void load_cache(int *g_hover, int *e_hover, int *true_hover, char *new_cfg_name);
-
-char *get_cache_path(bool create);
-
-#endif
diff --git a/include/draw.h b/include/draw.h
deleted file mode 100644
index 0a6baba..0000000
--- a/include/draw.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef DRAW_H
-#define DRAW_H
-
-//These functions are needed by either unix/draw.c or windows/draw.c and must be supplied via a header file
-
-#define BUF_LEN 1024
-
-extern int g_hover;
-extern int e_hover;
-extern struct group **g;
-extern struct entry **e;
-
-char *get_launch();
-
-//functions that differ between os
-void launch();
-
-#endif
diff --git a/include/entry.h b/include/entry.h
deleted file mode 100644
index 51e43ca..0000000
--- a/include/entry.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef ENTRY_H
-#define ENTRY_H
-
-typedef struct entry ENTRY;
-
-ENTRY *create_entry(char *new_name, char *new_path, bool force);
-
-void entry_rm(ENTRY *e, ENTRY *prev);
-
-void clear_entries(ENTRY *head);
-
-int entry_add(ENTRY *head, ENTRY *tail, ENTRY *add);
-
-ENTRY **get_entries(ENTRY *head, int count);
-
-char *get_ename(ENTRY *e);
-
-char *get_epath(ENTRY *e);
-
-bool get_eforce(ENTRY *e);
-
-void set_hide(ENTRY *e, bool status);
-
-bool get_hide(ENTRY *e);
-
-void entry_debug(ENTRY *trav);
-
-#endif
diff --git a/include/group.h b/include/group.h
deleted file mode 100644
index ab6f409..0000000
--- a/include/group.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef GROUP_H
-#define GROUP_H
-
-typedef struct group GROUP;
-
-GROUP *create_group(char *new_name);
-
-void group_add(char *gname, ENTRY *addme);
-
-void group_rm(GROUP *g);
-
-void clean_groups(); //remove empty groups from linked list
-
-GROUP **get_groups();
-
-char *get_gname(GROUP *g);
-
-char *get_gprog(GROUP *g);
-
-void set_gprog(GROUP *g, char *p);
-
-char *get_gflags(GROUP *g);
-
-void set_gflags(GROUP *g, char *p);
-
-ENTRY *get_ghead(GROUP *g);
-
-int get_ecount(GROUP *g);
-
-void set_ecount(GROUP *g, int new_count); //for use in hiding entries
-
-void set_gquotes(GROUP *g, bool b);
-
-bool get_gquotes(GROUP *g);
-
-int get_gcount();
-
-void group_debug(); //debug function to output all groups
-
-#endif
diff --git a/include/read_cfg.h b/include/read_cfg.h
deleted file mode 100644
index b6b996f..0000000
--- a/include/read_cfg.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef READ_CFG_H
-#define READ_CFG_H
-
-#define BUF_LEN 1024
-
-bool cfg_interp(char *path);
-bool get_sort();
-bool get_case_sensitivity();
-void refer_to_doc();
-void addme(char *path, char *group, bool force, char *name);
-int search_ch(char *str, char c);
-int search_last_ch(char *str, char c);
-int wild_cmp(char *wild, char *literal);
-char *strip_quotes(char *str);
-void error_mes(int ln, char *message);
-
-//functions that differ by os
-extern char sep;
-char *find_config();
-void mkconfig_wizard();
-void handle_fname(char *path, char *group, bool recurs, bool force, char *name, int ln);
-
-#endif