13 lines
		
	
	
		
			164 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			164 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| /*
 | |
|  * ctime - convers the calendar time to a string
 | |
|  */
 | |
| /* $Header$ */
 | |
| 
 | |
| #include	<time.h>
 | |
| 
 | |
| char *
 | |
| ctime(const time_t *timer)
 | |
| {
 | |
| 	return asctime(localtime(timer));
 | |
| }
 | 
