mirror of
https://github.com/xzeldon/htop.git
synced 2025-03-01 06:13:24 +03:00
17 lines
309 B
C
17 lines
309 B
C
![]() |
#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 */
|