blob: 94910f4318516958183c2ae40f756937c61f8abd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
|