ZFCP HBA API Library 1
vlib_sfhelper.h
1/*
2 * Copyright IBM Corp. 2003,2010
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.ibm.com/developerworks/library/os-cpl.html
7 *
8 * Authors: Sven Schuetz <sven@de.ibm.com>
9 *
10 * File: vlib_sfhelper.h
11 *
12 * Description:
13 * sysfs helper functions to hide the resource access
14 *
15 */
16
17#ifndef VLIB_SFHELPER_H_
18#define VLIB_SFHELPER_H_
19
20
21typedef DIR sfhelper_dir;
22
23sfhelper_dir *sfhelper_opendir(char *);
24void sfhelper_closedir(sfhelper_dir *);
25char *sfhelper_getNextDirEnt(sfhelper_dir *);
26int sfhelper_getProperty(char *, char *, char *);
27
28#endif /*VLIB_SFHELPER_H_*/