blob: e7e719fcc94193718d1e7f673af7d8f63ae74062 (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
|
# Runtime
---
# Requirements
* Linux X64
* GNU Make
* GCC with -std=gnu99 -fhardened
# Sections
* ##### [Interface](./interface.md)
* ##### [Type](./type.md)
* ##### [Pool](./pool.md)
* ##### [Thread](./thread.md)
* ##### [Namespace](./namespace.md)
* ##### [Testing](./testing.md)
# Invocation
## Startup
```c
void kpl_init(void);
```
## Main
```c
void kpl_main(int argc, char *argv[]);
```
## File
## REPL
## Shutdown
```c
void kpl_free(void)
```
|