#include "builtin.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/defs.h>
#include <sys/io.h>
#include <sys/proc.h>
Go to the source code of this file.
◆ builtin_cd()
◆ builtin_help()
◆ builtin_clear()
◆ builtin_exists()
◆ builtin_execute()
◆ builtins
Initial value:= {
{
.name = "cd",
.description = "Change the current working directory.",
.usage = "cd [directory]",
},
{
.name = "help",
.description = "Show this help message.",
.usage = "help",
},
{
.name = "clear",
.description = "Clear the terminal screen.",
.usage = "clear",
},
}
static uint64_t builtin_help(uint64_t argc, const char **argv)
static uint64_t builtin_clear(uint64_t argc, const char **argv)
static uint64_t builtin_cd(uint64_t argc, const char **argv)
Definition at line 15 of file builtin.c.