You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
309 B
16 lines
309 B
#ifndef HEADER_LibSensors |
|
#define HEADER_LibSensors |
|
|
|
#include "config.h" // IWYU pragma: keep |
|
|
|
#include <stdio.h> |
|
|
|
#include "LinuxProcessList.h" |
|
|
|
|
|
int LibSensors_init(FILE* input); |
|
void LibSensors_cleanup(void); |
|
|
|
int LibSensors_getCPUTemperatures(CPUData* cpus, int cpuCount); |
|
|
|
#endif /* HEADER_LibSensors */
|
|
|