ZFCP HBA API Library  1
vlib_sfhelper.h
1 /* SPDX-License-Identifier: EPL-1.0 */
2 /*
3  * Copyright IBM Corp. 2003,2010
4  *
5  * Authors: Sven Schuetz <sven@de.ibm.com>
6  *
7  * File: vlib_sfhelper.h
8  *
9  * Description:
10  * sysfs helper functions to hide the resource access
11  *
12  */
13 
14 #ifndef VLIB_SFHELPER_H_
15 #define VLIB_SFHELPER_H_
16 
17 
18 typedef DIR sfhelper_dir;
19 
20 sfhelper_dir *sfhelper_opendir(char *);
21 void sfhelper_closedir(sfhelper_dir *);
22 char *sfhelper_getNextDirEnt(sfhelper_dir *);
23 int sfhelper_getProperty(char *, char *, char *);
24 
25 #endif /*VLIB_SFHELPER_H_*/