summaryrefslogtreecommitdiff
path: root/docs/application/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/application/index.md')
-rw-r--r--docs/application/index.md29
1 files changed, 24 insertions, 5 deletions
diff --git a/docs/application/index.md b/docs/application/index.md
index 3809ac9..e7e719f 100644
--- a/docs/application/index.md
+++ b/docs/application/index.md
@@ -2,22 +2,41 @@
---
-## Requirements
+# Requirements
* Linux X64
* GNU Make
* GCC with -std=gnu99 -fhardened
-## Sections
+# Sections
* ##### [Interface](./interface.md)
* ##### [Type](./type.md)
* ##### [Pool](./pool.md)
* ##### [Thread](./thread.md)
+* ##### [Namespace](./namespace.md)
* ##### [Testing](./testing.md)
-## Invocation
+# Invocation
-### File
+## Startup
-### REPL
+```c
+void kpl_init(void);
+```
+
+## Main
+
+```c
+void kpl_main(int argc, char *argv[]);
+```
+
+## File
+
+## REPL
+
+## Shutdown
+
+```c
+void kpl_free(void)
+```