aboutsummaryrefslogtreecommitdiffstats
path: root/cputemp.h
diff options
context:
space:
mode:
Diffstat (limited to 'cputemp.h')
-rw-r--r--cputemp.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/cputemp.h b/cputemp.h
new file mode 100644
index 0000000..8cd39d5
--- /dev/null
+++ b/cputemp.h
@@ -0,0 +1,12 @@
+#ifndef HAVE_CPUTEMP_H
+#define HAVE_CPUTEMP_H
+
+struct s_sensor {
+ char name[255];
+ char filename[255];
+ char valid;
+};
+
+void cputemp_find_sensor(char *sensor_name,struct s_sensor *sensor);
+
+#endif