mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
11 lines
265 B
C
11 lines
265 B
C
#ifndef KERNEL_INIT_H
|
|
#define KERNEL_INIT_H
|
|
|
|
#include "fs/tty.h"
|
|
|
|
int mount_root(const struct fs_ops *fs, const char *source);
|
|
int create_init_process(const char *program, char *const argv[], char *const envp[]);
|
|
int create_stdio(struct tty_driver driver);
|
|
|
|
#endif
|