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
6typedef int (*cmd_t)(int argc,const char *argv[], putchar put);
7
8struct cmd_tbl_entry {
9 const char *name;
10 cmd_t command;
11 const char *description;
12};
13
14cmd_t find_cmd(const char *name);
15
16#endif