diff options
Diffstat (limited to 'src/include/cache.h')
-rw-r--r-- | src/include/cache.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/cache.h b/src/include/cache.h new file mode 100644 index 0000000..0f5a6c4 --- /dev/null +++ b/src/include/cache.h @@ -0,0 +1,10 @@ +#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 |