15 lines
283 B
C
15 lines
283 B
C
|
|
#ifndef KERNEL_ARG_H_
|
||
|
|
#define KERNEL_ARG_H_
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include <mango/status.h>
|
||
|
|
|
||
|
|
#define CMDLINE_MAX 4096
|
||
|
|
|
||
|
|
extern kern_status_t parse_cmdline(const char *cmdline);
|
||
|
|
|
||
|
|
extern const char *arg_value(const char *arg_name);
|
||
|
|
extern bool arg_is_set(const char *arg_name);
|
||
|
|
|
||
|
|
#endif
|