// Cowsay-like program // Author: xamidev // Licensed under the Unlicense. See the repo below. // https://github.com/xamidev/blankos #include "../libc/stdio.h" #include "../libc/string.h" #define MAX_MSG_LEN 128 const char* cow = " \\ ^__^\n" " \\ (oo)\\_______\n" " (__)\\ )\\/\\\n" " ||----w |\n" " || ||\n"; void print_bubble(const char* message) { int len = strlen(message); puts(" "); for (int i=0; i\n", message); puts(" "); for (int i=0; i\n", argv[0]); return; } char message[MAX_MSG_LEN]; message[0] = '\0'; for (int i=1; i