summaryrefslogtreecommitdiff
path: root/tools/lib/api/fs/fs.h
blob: 4d0aef6e71639f3e43bbf5b5e3e3c041de48f87d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __API_FS__
#define __API_FS__

#ifndef SYSFS_MAGIC
#define SYSFS_MAGIC            0x62656572
#endif

#ifndef PROC_SUPER_MAGIC
#define PROC_SUPER_MAGIC       0x9fa0
#endif

const char *sysfs__mountpoint(void);
const char *procfs__mountpoint(void);

int filename__read_int(const char *filename, int *value);
#endif /* __API_FS__ */