9 lines
161 B
C
9 lines
161 B
C
#ifndef RGB_H
|
|
#define RGB_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void decode_rgb565(const uint16_t*, const int, const int, uint8_t*);
|
|
|
|
#endif /* end of include guard: RGB_H */
|