pride-c/draw.h

11 lines
245 B
C
Raw Normal View History

#pragma once
#define ANSI "\x1b[38;5;"
#define COLOR(n) ANSI #n "m"
#define STRIPE "██████████████████\n"
typedef unsigned short int color;
2024-03-23 11:48:09 -04:00
void draw(const unsigned short int len, const color colors[]);