A update
This commit is contained in:
15
kernel/boot.c
Normal file
15
kernel/boot.c
Normal file
@ -0,0 +1,15 @@
|
||||
#include <stdint.h>
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <kernel/boot.h>
|
||||
|
||||
uint8_t parse_boot_data(const char* data)
|
||||
{
|
||||
if (strlen(data) == 0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user