summaryrefslogtreecommitdiffstats
path: root/include/bootargs.h
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-07-30 14:32:01 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-07-30 14:32:01 -0400
commitb905869a35f062a4e5072f10bec3a2ba3db0e365 (patch)
tree0666691804878857b4bb07daca8a54f5ddb8ae0b /include/bootargs.h
downloadjove-kernel-b905869a35f062a4e5072f10bec3a2ba3db0e365.tar.gz
jove-kernel-b905869a35f062a4e5072f10bec3a2ba3db0e365.tar.bz2
jove-kernel-b905869a35f062a4e5072f10bec3a2ba3db0e365.zip
working userland with some invoke syscalls
Diffstat (limited to 'include/bootargs.h')
-rw-r--r--include/bootargs.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/bootargs.h b/include/bootargs.h
new file mode 100644
index 0000000..94910f4
--- /dev/null
+++ b/include/bootargs.h
@@ -0,0 +1,13 @@
+#ifndef _JOVE_BOOTARGS_H
+#define _JOVE_BOOTARGS_H 1
+
+/*Layout:
+ * [KEY]=[VALUE]
+ * All values are seperated by spaces.*/
+
+/**@FUNC Get the value associated with the given key.
+ * @PARAM key string to search for.
+ * @RETURN value associated with key. */
+char *bootargs_getarg(const char *key);
+
+#endif