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