16 lines
178 B
C
16 lines
178 B
C
#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;
|
|
}
|