26cfa78f89
There, now it's fast.
11 lines
177 B
C
11 lines
177 B
C
#ifndef KERNEL_ARGS_H
|
|
#define KERNEL_ARGS_H
|
|
|
|
int args_present(char * karg);
|
|
char * args_value(char * karg);
|
|
void args_parse(char * _arg);
|
|
|
|
void legacy_parse_args(void);
|
|
|
|
#endif
|