11 lines
		
	
	
		
			139 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			139 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdio.h>
 | |
| #include "lightness.h"
 | |
| 
 | |
| int lightness(void) {
 | |
|   if (time(NULL)%2) {
 | |
|     return LIGHT;
 | |
|   } else {
 | |
|     return DARK;
 | |
|   }
 | |
| }
 |