15 lines
249 B
C
15 lines
249 B
C
#pragma once
|
|
|
|
#include <initrd.h>
|
|
#include <stddef.h>
|
|
|
|
void help(void);
|
|
void hello(void);
|
|
void hwinfo(void);
|
|
void ls(file_node_t *root);
|
|
void cat(file_node_t *root, const char *filename);
|
|
void reboot(void);
|
|
|
|
int // is continue
|
|
shell(file_node_t *);
|