9 lines
119 B
C
9 lines
119 B
C
|
|
#ifndef LIGHTNESS_H
|
||
|
|
#define LIGHTNESS_H
|
||
|
|
#define LIGHT 1
|
||
|
|
#define DARK 0
|
||
|
|
|
||
|
|
int lightness(void);
|
||
|
|
|
||
|
|
#endif /* LIGHTNESS_H */
|