Files
Espresso/kernel/boot.c

17 lines
177 B
C
Raw Normal View History

2025-05-28 14:41:02 -05:00
#include <stdint.h>
#include <string.h>
#include <kernel/boot.h>
2025-06-13 18:03:39 -05:00
2025-05-28 14:41:02 -05:00
uint8_t parse_boot_data(const char* data)
{
if (strlen(data) == 0)
{
return 0;
}
return 0;
}