#ifndef LIB_SENSORS_ERROR_H
#define LIB_SENSORS_ERROR_H
#define SENSORS_ERR_WILDCARDS 1
#define SENSORS_ERR_NO_ENTRY 2
#define SENSORS_ERR_ACCESS_R 3
#define SENSORS_ERR_KERNEL 4
#define SENSORS_ERR_DIV_ZERO 5
#define SENSORS_ERR_CHIP_NAME 6
#define SENSORS_ERR_BUS_NAME 7
#define SENSORS_ERR_PARSE 8
#define SENSORS_ERR_ACCESS_W 9
#define SENSORS_ERR_IO 10
#define SENSORS_ERR_RECURSION 11
#ifdef __cplusplus
extern "C" {
#endif
const char *sensors_strerror(int errnum);
extern void (*sensors_parse_error) (const char *err, int lineno);
extern void (*sensors_parse_error_wfn) (const char *err,
const char *filename, int lineno);
extern void (*sensors_fatal_error) (const char *proc, const char *err);
#ifdef __cplusplus
}
#endif
#endif