Files
magenta/include/mango/arg.h
T

15 lines
281 B
C
Raw Normal View History

2024-11-02 11:31:51 +00:00
#ifndef MANGO_ARG_H_
#define MANGO_ARG_H_
2023-12-27 17:34:59 +00:00
#include <stdbool.h>
2024-11-02 11:31:51 +00:00
#include <mango/status.h>
2023-12-27 17:34:59 +00:00
#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