10 lines
134 B
C
10 lines
134 B
C
![]() |
#ifndef HUE_H
|
||
|
#define HUE_H
|
||
|
|
||
|
#define RED 1
|
||
|
#define GREEN 2
|
||
|
#define BLUE 4
|
||
|
|
||
|
int hue(void);
|
||
|
|
||
|
#endif /*HUE_H*/
|