Files
magenta/include/kernel/arg.h
T

15 lines
284 B
C
Raw Normal View History

2026-02-19 19:13:44 +00:00
#ifndef KERNEL_ARG_H_
#define KERNEL_ARG_H_
2026-04-30 20:30:36 +01:00
#include <magenta/types.h>
2026-02-19 19:13:44 +00:00
#include <stdbool.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