1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
..
36
37
38
39
40
41
42
43
44
45
46
47
48
49
...
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
#ifndef KIcore
#define KIcore
#include <k/type.h>
#include <k/io.h>
#include <k/str.h>
#include <k/internal.egroup.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct kvar {
ksraw name;
ksraw val;
char* platform;
} kvar;
typedef struct kenv {
kiochan std;
kiochan err;
sz argc; const char** args;
sz varc; kvar* vars;
} kenv;
/* i'm really sorry okay */
typedef
#if (__STDC_VERSION__ >= 199901L)
_Bool bool;
#endif
enum
................................................................................
false = 0, no = 0,
true = 1, yes = 1
}
#if !(__STDC_VERSION__ >= 199901L)
bool /* } bool ; */
#endif
;
#ifndef KFclean
# include <k/internal.egroup.h>
# define Kokay(cond) (((cond) % kglobal_module_offset) == 0)
# if (__STDC_VERSION__ >= 199901L) ||\
(__cplusplus >= 201103L)
# define KVvm_args __VA_ARGS__
................................................................................
[[noreturn]] void kstop(stat_long code);
#elif __STDC_VERSION__ >= 201103L
_Noreturn void kstop(stat_long code);
#else
void kstop(stat_long code);
#endif
typedef u16 kcond;
/* this will probably not need to be altered,
* as libk sports a modest number of modules,
* and there are few enough error conditions
* in each that 16-bit address space should
* be more than enough for the foreseeable
* future. however if that changes, altering
* the definition here will effect all the
* necessary changes throughout the library */
bool kokay(kcond);
typedef struct kerror {
const char* module_name,
* module_desc,
* error_string;
kcond cond;
} kerror;
kerror kexplain(kcond);
#ifdef __cplusplus
}
#endif
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
<
<
<
<
<
<
<
<
<
>
>
<
<
<
<
<
<
<
<
<
<
<
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
..
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
...
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
#ifndef KIcore
#define KIcore
#include <k/type.h>
typedef u16 kcond;
/* this will probably not need to be altered,
* as libk sports a modest number of modules,
* and there are few enough error conditions
* in each that 16-bit address space should
* be more than enough for the foreseeable
* future. however if that changes, altering
* the definition here will effect all the
* necessary changes throughout the library */
/* i'm really sorry okay */
typedef
#if (__STDC_VERSION__ >= 199901L)
_Bool bool;
#endif
enum
................................................................................
false = 0, no = 0,
true = 1, yes = 1
}
#if !(__STDC_VERSION__ >= 199901L)
bool /* } bool ; */
#endif
;
bool kokay(kcond);
#ifndef KFclean
# include <k/internal.egroup.h>
# define Kokay(cond) (((cond) % kglobal_module_offset) == 0)
# if (__STDC_VERSION__ >= 199901L) ||\
(__cplusplus >= 201103L)
# define KVvm_args __VA_ARGS__
................................................................................
[[noreturn]] void kstop(stat_long code);
#elif __STDC_VERSION__ >= 201103L
_Noreturn void kstop(stat_long code);
#else
void kstop(stat_long code);
#endif
typedef struct kerror {
const char* module_name,
* module_desc,
* error_string;
kcond cond;
} kerror;
#include <k/io.h>
#include <k/str.h>
#include <k/internal.egroup.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct kvar {
ksraw name;
ksraw val;
char* platform;
} kvar;
typedef struct kenv {
kiochan std;
kiochan err;
sz argc; const char** args;
sz varc; kvar* vars;
} kenv;
kerror kexplain(kcond);
#ifdef __cplusplus
}
#endif
#endif
|