toaruos/kernel/include/args.h
Kevin Lange 984fa1d4c6 EXT2 backed by block device
WARNING: THIS BREAKS PARTITIONS

Until I get partition maps and can produce device entries like
/dev/hda1, partitions will be broken, so DON'T TRY TO BUILD AN IMAGE
WITH THE IMAGE BUILDER.

Hopefully this is all rectified in under 24 hours...
2014-03-16 01:33:01 -07:00

12 lines
204 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 early_stage_args(void);
void late_stage_args(void);
#endif