diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-12 12:15:42 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-12 12:15:42 +0000 |
commit | ee03f1415acc9f4f8901593d9045244fbb3bbbb0 (patch) | |
tree | 32faccd0a0ac25373fec4823499969e62c2541ae /plugins/utils_disk.h | |
parent | df23fd75267c830f85a74cfde3020981c37e82a5 (diff) | |
download | monitoring-plugins-ee03f1415acc9f4f8901593d9045244fbb3bbbb0.tar.gz |
Moving check_disk functions into utils_disk.c and testing them
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1447 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils_disk.h')
-rw-r--r-- | plugins/utils_disk.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/utils_disk.h b/plugins/utils_disk.h new file mode 100644 index 00000000..f173c916 --- /dev/null +++ b/plugins/utils_disk.h | |||
@@ -0,0 +1,12 @@ | |||
1 | /* Header file for utils_disk */ | ||
2 | |||
3 | |||
4 | struct name_list | ||
5 | { | ||
6 | char *name; | ||
7 | struct name_list *next; | ||
8 | }; | ||
9 | |||
10 | void np_add_name (struct name_list **list, const char *name); | ||
11 | int np_find_name (struct name_list *list, const char *name); | ||
12 | |||