// Miscellaneous small programs #include "../libc/stdio.h" #include "../kernel/system.h" #include "../libc/string.h" #include "../drivers/framebuffer.h" // Print a rainbow colorful text for testing #define BUF_SIZE 256 #define COLORS 20 void program_rainbow() { char input_buffer[BUF_SIZE]; puts("What to print? "); get_input(input_buffer, BUF_SIZE); puts("\n"); for (int i=0; i