From b905869a35f062a4e5072f10bec3a2ba3db0e365 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 30 Jul 2025 14:32:01 -0400 Subject: working userland with some invoke syscalls --- include/bootargs.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/bootargs.h (limited to 'include/bootargs.h') 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 -- cgit v1.2.1