2017-09-17 23:45:03 +08:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-19 06:26:13 +08:00
|
|
|
#ifdef __linux__
|
2017-09-17 22:18:17 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2017-09-24 21:33:01 +08:00
|
|
|
#include "../util.h"
|
2017-09-17 22:18:17 +08:00
|
|
|
|
|
|
|
const char *
|
|
|
|
temp(const char *file)
|
|
|
|
{
|
|
|
|
int temp;
|
|
|
|
|
|
|
|
return (pscanf(file, "%d", &temp) == 1) ?
|
|
|
|
bprintf("%d", temp / 1000) : NULL;
|
|
|
|
}
|
2018-03-19 06:26:13 +08:00
|
|
|
#endif
|