slstatus/components/temperature.c
2018-03-18 23:26:13 +01:00

16 lines
262 B
C

/* See LICENSE file for copyright and license details. */
#ifdef __linux__
#include <stdio.h>
#include "../util.h"
const char *
temp(const char *file)
{
int temp;
return (pscanf(file, "%d", &temp) == 1) ?
bprintf("%d", temp / 1000) : NULL;
}
#endif