summaryrefslogtreecommitdiff
path: root/components/Linux/temperature.c
blob: fa50826d770c63d36d2084e015229a19b71263ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <stdio.h>
#include <string.h>

#include "../../util.h"

const char *
temp(const char *file)
{
	int temp;

	return (pscanf(file, "%d", &temp) == 1) ?
	       bprintf("%d", temp / 1000) : NULL;
}