summaryrefslogtreecommitdiff
path: root/kernel/kernel.h
blob: cb9810cf5c0c9b555e66ef54eaa76bfc03764fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef FOOLOS_KERNEL_H
#define FOOLOS_KERNEL_H

#include "fifo.h"
#include "terminal/terminal.h"

typedef struct fool_os_struct
{

    fifo std_in;
    fifo std_out;
    terminal_tty* tty;

}fool_os;

fool_os *get_fool();

#endif