Minor fixes in docs

This commit is contained in:
xamidev
2024-08-24 22:22:13 +02:00
parent 9992f84fdb
commit cde6bb4522
3 changed files with 6 additions and 10 deletions

View File

@@ -105,3 +105,7 @@ Encode a string using the rot13 cipher.
#### `morse` #### `morse`
Convert a string to its morse equivalent. Convert a string to its morse equivalent.
#### `cowsay`
Makes a cow speak!

View File

@@ -17,14 +17,6 @@
// Splash screen: esthetic stuff. // Splash screen: esthetic stuff.
char* ascii_title =
"\n"
"----------------------------------------------\n"
"Blank OS version 0.3.84-alpha\n"
"Author: @xamidev - star the repo for a cookie!\n"
"----------------------------------------------\n"
"\n";
char* motd[] = char* motd[] =
{ {
"Now in 2D!", "Now in 2D!",
@@ -38,7 +30,7 @@ void splash()
int random = randint(time_seed()); int random = randint(time_seed());
char* motd_pick = motd[random%motd_size]; char* motd_pick = motd[random%motd_size];
cowsay(motd_pick, red, black); cowsay(motd_pick, red, black);
colorputs(" blankOS 0.3.84-alpha", red, black); colorputs(" blankOS 0.3.86-alpha", red, black);
puts("\n"); puts("\n");

View File

@@ -49,7 +49,7 @@ void program_uptime()
void program_help() void program_help()
{ {
printf("help\tpanic\twords\tprimes\trainbow\tclear\nmath\tbf\t uptime echo\t sysinfo\tconway\nrot13 morse\n"); printf("help\tpanic\twords\tprimes\trainbow\tclear\nmath\tbf\t uptime echo\t sysinfo\tconway\nrot13 morse\tcowsay\n");
} }
// Panic // Panic