summaryrefslogtreecommitdiffstats
path: root/lib/utils_disk.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utils_disk.h')
-rw-r--r--lib/utils_disk.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/utils_disk.h b/lib/utils_disk.h
new file mode 100644
index 0000000..928fdbe
--- /dev/null
+++ b/lib/utils_disk.h
@@ -0,0 +1,32 @@
1/* Header file for utils_disk */
2
3#include "mountlist.h"
4#include "utils_base.h"
5
6struct name_list
7{
8 char *name;
9 struct name_list *next;
10};
11
12struct parameter_list
13{
14 char *name;
15 int found;
16 thresholds *freespace_bytes;
17 thresholds *freespace_units;
18 thresholds *freespace_percent;
19 thresholds *usedspace_bytes;
20 thresholds *usedspace_units;
21 thresholds *usedspace_percent;
22 thresholds *usedinodes_percent;
23 struct mount_entry *best_match;
24 struct parameter_list *name_next;
25};
26
27void np_add_name (struct name_list **list, const char *name);
28int np_find_name (struct name_list *list, const char *name);
29int np_seen_name (struct name_list *list, const char *name);
30struct parameter_list *np_add_parameter(struct parameter_list **list, const char *name);
31int search_parameter_list (struct parameter_list *list, const char *name);
32void np_set_best_match(struct parameter_list *desired, struct mount_entry *mount_list, int exact);