summaryrefslogtreecommitdiff
path: root/docs/application/index.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-03 15:26:26 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-03 15:26:26 -0400
commitf3e3fd0cdba8d2f9f49be279ac3c0ec87a44609b (patch)
treea993e1539cf90362141db8a4c43f1f9f3ff7ef42 /docs/application/index.md
parentb26ad08b39b8229dcea0bafc4a8ba4b0d7ad7154 (diff)
refs with more impl
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)
+```