OurOS
0.1
Operating System built by McGill Students
Loading...
Searching...
No Matches
kshell_cmds.h
1
#ifndef _KSHELL_CMDS_H
2
#define _KSHELL_CMDS_H
3
4
#include "io.h"
5
6
typedef
int (*cmd_t)(
int
argc,
const
char
*argv[], putchar put);
7
8
struct
cmd_tbl_entry {
9
const
char
*name;
10
cmd_t command;
11
const
char
*description;
12
};
13
14
cmd_t find_cmd(
const
char
*name);
15
16
#endif
include
kernel
kshell_cmds.h
Generated by
1.9.8