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