mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
New feature(s): - Markdown reader (Automatically opens when opening .MD files, right click a .MD file to edit. Bug fixes: -N/A
8 lines
167 B
C
8 lines
167 B
C
#include "cli_utils.h"
|
|
|
|
void cli_cmd_brewver(char *args) {
|
|
(void)args;
|
|
cli_write("BrewOS v1.03 Alpha\n");
|
|
cli_write("BrewOS Kernel V2.0.3 Pre-Alpha\n");
|
|
}
|