#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