13 lines
225 B
C
13 lines
225 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright (c) 2025 0xKarinyash
|
|
|
|
#ifndef SHELLBUILTINS_H
|
|
#define SHELLBUILTINS_H
|
|
|
|
void cmd_kfetch();
|
|
void cmd_meow();
|
|
void cmd_help();
|
|
void cmd_regs();
|
|
void print_regs();
|
|
|
|
#endif |