mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
15 lines
333 B
C
15 lines
333 B
C
#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_sleep(10);
|
|
}
|
|
}
|