blob: 3acecc9419c78714a750089f355e0a50a85ad414 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef HAVE_SYSFS_H
#define HAVE_SYSFS_H
int sysfs_read_str(char *sysfs_file,char *buf,size_t bufsize);
long int sysfs_read_long_int(char *sysfs_file);
int sysfs_write_str(char *sysfs_file,char *value,int checkdelay);
#endif
|