mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
Initial commit
This commit is contained in:
14
src/kernel/cli_apps/readtheman.c
Normal file
14
src/kernel/cli_apps/readtheman.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "cli_utils.h"
|
||||
|
||||
// Forward declaration from cmd.c
|
||||
extern void cli_cmd_beep(char *args);
|
||||
|
||||
void cli_cmd_readtheman(char *args) {
|
||||
(void)args;
|
||||
cli_write("\nYou read the manual? NERD. you know what?\n");
|
||||
cli_write("Fuck you.\n");
|
||||
for(int i=0; i<3; i++) {
|
||||
cli_cmd_beep(NULL);
|
||||
cli_delay(1000000);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user