#include #include typedef struct Color { unsigned char r; unsigned char g; unsigned char b; unsigned char a; } Color; Color lineScanner(uint16_t x, uint16_t y, uint32_t frameNumber) { return (Color){.r = random() % 255, .g = random() % 255, .b = random() % 255, .a = 255}; }