HariboteOS/day26/include/command.h
2021-05-29 00:29:20 +08:00

17 lines
520 B
C

#include "console.h"
#ifndef _COMMAND_H_
#define _COMMAND_H_
void cmd_mem(struct Console *cons, unsigned int memtotal);
void cmd_cls(struct Console *cons);
void cmd_dir(struct Console *cons);
void cmd_type(struct Console *cons, int *fat, char *cmdline);
void cmd_exit(struct Console *cons, int *fat);
void cmd_start(struct Console *cons, char *cmdline, int memtotal);
void cmd_ncst(struct Console *cons, char *cmdline, int memtotal);
int cmd_app(struct Console *cons, int *fat, char *cmdline);
#endif // _COMMAND_H_