Xinqi Bao's Git

6376e30f79942964355accc6a2f7cd6bfcc5560d
[slstatus.git] / components / temperature.c
1 /* See LICENSE file for copyright and license details. */
2 #ifdef __linux__
3 #include <stdio.h>
4
5 #include "../util.h"
6
7 const char *
8 temp(const char *file)
9 {
10 int temp;
11
12 return (pscanf(file, "%d", &temp) == 1) ?
13 bprintf("%d", temp / 1000) : NULL;
14 }
15 #endif