14 lines
		
	
	
		
			238 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			238 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* See LICENSE file for copyright and license details. */
 | 
						|
#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;
 | 
						|
}
 |