mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-20 00:10:09 -05:00
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1447 f882894a-f735-0410-b71e-b25c423dba1c
12 lines
222 B
C
12 lines
222 B
C
/* Header file for utils_disk */
|
|
|
|
|
|
struct name_list
|
|
{
|
|
char *name;
|
|
struct name_list *next;
|
|
};
|
|
|
|
void np_add_name (struct name_list **list, const char *name);
|
|
int np_find_name (struct name_list *list, const char *name);
|
|
|