mirror of https://github.com/xzeldon/htop.git
17 lines
325 B
C
17 lines
325 B
C
#ifndef HEADER_LibSensors
|
|
#define HEADER_LibSensors
|
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "linux/LinuxProcessList.h"
|
|
|
|
|
|
int LibSensors_init(FILE* input);
|
|
void LibSensors_cleanup(void);
|
|
|
|
void LibSensors_getCPUTemperatures(CPUData* cpus, unsigned int cpuCount);
|
|
|
|
#endif /* HEADER_LibSensors */
|