
Added hotkeys to switch between console buffers and to return to the home one Added clear screen command Added debug text outputs to the hello command and when loading sh
45 lines
1019 B
C
45 lines
1019 B
C
struct stat;
|
|
struct rtcdate;
|
|
|
|
// system calls
|
|
int fork(void);
|
|
int exit(void) __attribute__((noreturn));
|
|
int wait(void);
|
|
int pipe(int*);
|
|
int write(int, const void*, int);
|
|
int read(int, void*, int);
|
|
int close(int);
|
|
int kill(int);
|
|
int exec(char*, char**);
|
|
int open(const char*, int);
|
|
int mknod(const char*, short, short);
|
|
int unlink(const char*);
|
|
int fstat(int fd, struct stat*);
|
|
int link(const char*, const char*);
|
|
int mkdir(const char*);
|
|
int chdir(const char*);
|
|
int dup(int);
|
|
int getpid(void);
|
|
char* sbrk(int);
|
|
int sleep(int);
|
|
int uptime(void);
|
|
int getch(void);
|
|
int greeting(void);
|
|
int shutdown(int restart);
|
|
int screen(void);
|
|
int cls(void);
|
|
|
|
// ulib.c
|
|
int stat(const char*, struct stat*);
|
|
char* strcpy(char*, const char*);
|
|
void *memmove(void*, const void*, int);
|
|
char* strchr(const char*, char c);
|
|
int strcmp(const char*, const char*);
|
|
void printf(int, const char*, ...);
|
|
char* gets(char*, int max);
|
|
uint strlen(const char*);
|
|
void* memset(void*, int, uint);
|
|
void* malloc(uint);
|
|
void free(void*);
|
|
int atoi(const char*);
|