2024-03-22 23:52:46 -04:00
|
|
|
#include "draw.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2024-03-23 11:48:09 -04:00
|
|
|
void draw(const unsigned short int len, const color colors []) {
|
2024-03-22 23:52:46 -04:00
|
|
|
for(int i = 0; i < len; i++) {
|
|
|
|
printf(ANSI "%dm" STRIPE, colors[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|