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

#define KERNEL_VERSION "FoolOs 0.2.1"

#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